@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

body {
    background-image: url(assets/pitch_bg.png);
}

#foregroundText {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

#logo {
    width: 80%;
    animation-name: shift_up;
    animation-duration: 1s;
}

#foregroundSubtitle {
    font-family: "Space Grotesk", sans-serif;
    color: #E3DACA;
    font-size: 3rem;
    margin-top: 0.7rem;
    opacity: 0;
    animation-name: shift_up;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes shift_up {
    from {
        transform: translateY(70%);
        opacity: 0;
    } to {
        transform: translateY(0%);
        opacity: 1;
    }
}