*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
    background-color: black;
    height: 53px;
    width:100%;
    position: absolute;
    font-family: "Bruno Ace";
    font-size: 25px;
    text-align: center;
    padding-top: 15px;
}

#banner{
    background-image: linear-gradient(grey,black);
    height: 510px;
    overflow: hidden;
}

a{
    color: white;
    text-decoration: none;
}


a:hover{
    text-decoration:underline red;
    transition: 0.3s ease-in;
}

/*header nav*/
nav.flexbox{
    display: flex;
    justify-content: space-between;
    align-items: center;

    ul{
        margin-left: 20px;
        display: flex;
        align-items: center;
    }

ul li{
    margin-right: 20px;
}
}

/*banner*/
#logo{
    width: 45%;
    position: relative;
    top: 130px;
    animation: swoosh 5s cubic-bezier(1, 0.03, 0.31, 1.01) infinite;
    overflow: hidden;
}

@keyframes swoosh {
    0%{
        transform: translateX(-100vw);}
        
      50%{
        transform: translateX(29vw);}

    100%{
        transform: translateX(100vw);}

}

#formula{
    position:absolute; 
    color: white; 
    font-size: 50px; 
    font-family: Bruno Ace; 
    font-weight: 400; 
    word-wrap: break-word;
    top: 363px;
    left: 100px;
    animation: name 5s cubic-bezier(1, 0.03, 0.31, 1.01) infinite reverse;
    overflow: hidden;
}

@keyframes name {
    0%{
        transform: translateX(-103vw);}
        
      50%{
        transform: translateX(40vw);}

    100%{
        transform: translateX(100vw);}

}

/*body*/
body{
    background-color: black;
}

h1{
    margin-top: 180px;
    font-family: Bruno Ace;
    color: rgb(225, 225, 225);
    font-size: 45px;
    font-weight: 400;
    text-align: center;
}

hr{
    border: 1px solid red;
}

.divider{
    margin-top: 135px;
    border: 1px solid red;
}

/* Track */
::-webkit-scrollbar {
    background-color: rgba(255, 0, 0, 0.5);
    width: 0px;
    
    }
    
    ::-webkit-scrollbar-thumb {
        background-color: rgb(0, 0, 0);
        border: 1px solid red;
        border-radius: 10px;
    }

    footer{
        background-color: #000000;
        height: 55px;
        width:100%;
        position: absolute;
        margin-top:100px;
        font-family: "Bruno Ace";
        font-size: 25px;
        padding-top: 10px;
        border: 1px solid red;
    }
/*imac
@media screen and (min-width:2560px) { 
    /* CSS rules here 
}*/