body {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden;
}

.logo {
    width: 300px;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.instagram,
.linkedin {
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
}

.instagram {
    background-image: url(/img/instagram_white.png);
}

.linkedin {
    background-image: url(/img/linkedin-icon.svg);
}