@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
    color: #FFF;
    user-select: none;
}

body {
    background: url("../images/background.jpg") center 0 no-repeat;
    background-size: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .75);
    z-index: -1;
}

main {
    max-width: 460px;
    margin: auto;
    margin-top: 25%;
    transform: translateY(-25%);
    text-align: center;
}

main h1 {
    font-size: 3em;
}

main p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
}

#instagramus svg {
    margin-bottom: 2.5px;
    margin-left: 10px;
    margin-right: 10px;
}
#tiktokus svg {
    margin-bottom: .7px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.audio {
    display: flex;
    flex-direction: column;
}

.audio small {
    font-size: .65em;
    margin-top: 2px;
}

@media (max-width: 768px) {
    body {
        background-size: auto;
    }

    main {
        margin-top: 100%;
        transform: translateY(-100%);
    }
}