@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body,html{
    font-family: 'Open Sans', sans-serif;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: #000;
}
section{
    height: 100vh;
}
.hero{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero h1{
    text-align: center; 
    font-size: 25vw;
    color: #ccc;
    text-align: center;
    padding:0;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}
.hero p{
    margin: 0;
    padding: 0;
    color: #444;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2em;
    text-align: center;
}
#about{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ccc;
}
#about p{
    opacity: 0;
    width: 70%;
    font-size: 3em;
    color: #333;
    transition: opacity 4s;
}
@keyframes fade-in{
    from { 
        opacity : 0;
        transform: translateY(-1em);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.parallax{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: #c3c3c3;
}
.parallax div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    transition: all linear .3s;
    padding: 0;
    min-height: 50%;
    width: 100%;
    font-size: 4em;
}
.parallax video{
    padding: 0;
    margin: 0;
    max-height: 40%;
    object-fit: initial;
}
::cue{
    font-size: 4em;
}
.jalon{
    background-image: url("assets/jalon-72.jpg");
}
.mia{
    background-image: url("assets/mia-72.jpg");
    background-color: #fff;
}
.troy{
    background-image: url("assets/troy-72.jpg");
}
footer{
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    margin: auto;
    width:20vw;
    padding: 48px 0;
    display: flex;
    align-items:center;
    justify-content: space-evenly;
}
footer span{
    text-align: center;
}
footer a{
    color: inherit;
    font-size: 1.25em;
}
@media only screen and (max-width: 600px){
    section{
        min-height: 100vh;
    }
    #about{
        min-height: 100vh;
    }
    #about p{
        width: 90%;
        font-size: 1em;
    }
    @supports (-webkit-touch-callout: none){
        .hero p{
            font-size: 1em;
        }
        .parallax{
            background-attachment: unset;
            background-size: cover;
        }
    }
    .parallax video{
        padding: 0;
        margin: 0;
        max-width: 85%;
        width: 100%;
        height: auto;
        object-fit: initial; 
    }
}
@media only screen and (max-width: 1300px){
    footer{
        width: 100vw;
    }
    footer a{
        font-size: 1em;
    }
}