
/* Flex Box */

html, #info-box, #info, #social {
    display: flex;
    justify-content: center;
    align-items: center;
}

#info-box {
    color: rgba(55, 44, 88, 1);
    background-color: rgba(250, 188, 222, 0.8);
    border-radius: 1rem;
    padding: 5%;
    position: relative;
    overflow: hidden;
}   


#info {
    margin-left: 2.5rem;
    flex-direction: column;
    animation-delay: 1.5s;
}

#info > * {
    margin: 0.5rem 1.5rem;
}

h1 {
    font-size: 3rem;
}

#enter {
    font-size: 3rem;
    margin-right: 1.5rem;
    animation-delay: 2.5s;
}

#titles, #social {
    position: relative;
    animation-delay: 1.5s;
}

/* Nav */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    color: rgba(195, 184, 172, 1);
    background-color: rgba(23, 18, 14, 0.8);
    border-bottom: 1px solid rgba(195, 184, 172, 1);
    animation-delay: 2.5s;
}

#nav ul {
    margin-left: 10%;
    width: 80%;
    display: flex;
    justify-content: space-around;
}

#nav li {
    padding: 0.75rem 0;
}


@media only screen and (orientation: portrait) {
    html {
        background-image: url("../images/tracks.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}