html,
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
    font-size: clamp(6px, 1vw, 17px);
}

.main {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    width: 40rem;
    height: 30rem;
    filter: drop-shadow(0px 0px 200px black);
}

.main video {
    width: 100%;
    border-radius: 1rem;
    margin-top: 1rem;
}

.main .content {
    position: relative;
    translate: 0 -15%;
    opacity: 0;
    animation: content-animation .5s ease-in-out forwards;
}

@keyframes content-animation {
    50% {
        translate: 0 5%;
    }

    100% {
        translate: 0 0;
        opacity: 1;
    }
}

.main h1 {
    font-size: 3rem;
    margin: 0 0 .25rem 0;
}

.main span {
    font-size: 1rem;
    line-height: 1.1rem;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    margin-bottom: 1rem;
}

.main img {
    position: absolute;
    opacity: 0;
    animation: img-animation 1s ease-in-out forwards;
}

@keyframes img-animation {
    100% {
        opacity: .5;
    }
}

/* Gwen */
.main img:nth-of-type(1) {
    top: -40%;
    left: 0;
    width: 20rem;
    animation-delay: .25s;
}

/* Rachel */
.main img:nth-of-type(2) {
    top: -10%;
    right: -25%;
    rotate: 30deg;
    width: 20rem;
    animation-delay: .5s;
}

/* Rosie */
.main img:nth-of-type(3) {
    top: 0;
    left: -25%;
    rotate: -30deg;
    width: 16rem;
    animation-delay: .75s;
}

/* Mika */
.main img:nth-of-type(4) {
    top: -35%;
    right: 0%;
    width: 20rem;
    scale: -1 1;
    animation-delay: 1s;
}

.main .links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.main .links a {
    background-color: #FFD700;
    padding: .5rem 1rem;
    border-radius: 1rem;
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: flex;
    gap: .5rem;
    align-items: center;
    transition: .25s scale, .25s color, .25s background-color;
}

.main .links a:hover {
    scale: .95;
    color: #FFD700;
    background-color: #333;
}

.main .foot {
    margin-top: 1rem;
}

.rect1 {
    background: #222;
    position: fixed;
    width: 200vw;
    rotate: 50deg;
    height: 50vw;
    opacity: 0;
    translate: 0 -100%;
    animation: rect1-animation .5s ease-in-out forwards;
}

@keyframes rect1-animation {
    100% {
        translate: 0 0;
        opacity: 1;
    }
}

.rect2 {
    background: #333;
    position: fixed;
    width: 200vw;
    rotate: 260deg;
    height: 50vw;
    opacity: 0;
    translate: 0 -100%;
    animation: rect2-animation .5s .5s ease-in-out forwards;
}

@keyframes rect2-animation {
    100% {
        translate: 0 0;
        opacity: 1;
    }
}