html {
    font-family: Helvetica, sans-serif;
}

.MOBILEOHWHENIGETYOU {
    /* okay but like why would it ignore overflow in html for NO REASON it's so stupid i'm going to kill john css */
    overflow-x: hidden;
    position: relative;
}

#star {
    color: yellow;
    position: absolute;
    max-width: 800px;
    width: 65%;
    right: -30vw;
    top: 1vw;
    overflow: hidden;
    animation-name: star;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    z-index: -1;

}

header {
    display: flex;
    width: 100%;
    justify-content: space-evenly;

}

h1 {
    font-size:   4.3rem;
}

#banner {
    align-content: center;
    text-align: center;
    height: 40vw;
    /* background-color: yellow; */
    
}

#banner iframe {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}

article{
    background-color: black;
    color: white;
    /* display: flex;
    flex-direction: column; */
    gap: 1.2rem;
    padding: 1.44rem;
}

.inspo {
    text-align: center;
    columns: 2;
}

iframe{aspect-ratio: 16/9;}
.inspo iframe{
    margin: auto;
    width: 100%;
}

.inspo p { font-size: 1.2rem;}

figure{
    flex-wrap: nowrap;
    padding: 1.22rem;
}

.exer{
    display: flex;
    flex-direction: column;
}

.exerin{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 50px 0px;
}
.exerin img{
    width: 100%;
}

.exerin iframe{
    width: 100%;
}

.projin{
    width: 100%;
}

.projin iframe{
    width: 100%;
}

#personal {
    font-size: 8rem;
    color: aqua;
        animation-name: personal;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
@keyframes star {
    0%{
        rotate: 0deg;
    }
    100%{
        rotate: 360deg;
    }
}

@keyframes personal {
    0%{
        color: aqua;
    }
    50%{
        color: crimson;
    }
    100%{
        color: aqua;
    }
} 

@media screen and (max-width: 850px) {
    h1 {
        font-size:   3.583rem;
    }
    .inspo {
        columns: 1;
    }

    .exerin{
        grid-template-columns: 1fr;
    }
}