body{
    background-color: black;
    padding: 0px;
    margin: 0px;
}

body a{
    text-decoration: none;
    color: black;
}

#mainvideo{
    display: flex;
    position: fixed;
    justify-content: center;
    width: 100%;
    
}

#imagediv{
    width: 100%;
    height: 800px;
}

#cbl{
    display: flex;
    position: relative;
    padding-left: 24%;    
}

@media screen and (max-width:900px){
    #cbl{
        padding-left: 0px;
        justify-content: center;
        width: 100%;
        height: 300px;
    }
}

@media screen and (max-width:900px){
    #imagediv{
        height: 500px;
    }
}

#socialsbox{
    display: flex;
    position: relative;
    z-index: 30;
    width: 100%;
    height: 90px;
}

#socials{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
    width: 100%;
    gap: 30px;
    font-size: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

@media screen and (max-width:900px){
    #socialsbox{
        height: 300px;
    }
}


@media screen and (max-width:900px){
    #mainvideo{
        padding-left: 100px;
    }
}

#twitterbox{
    display: flex;
    background-image: linear-gradient(white 50%, black 50%);
    background-size: 200% 200%;
    background-position: top;
    height: 90px;
    border-radius: 15px;
    width: 280px;
}

#twitterbox:hover{
    animation-play-state: running;
    animation-name: gradientSwitch;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    color: white;
}

#twitterbox:hover span{
    color: white;
}

#instabox{
    background-image: linear-gradient(white 50%, black 50%);
    background-size: 200% 200%;
    background-position: top;
    height: 90px;
    width: 300px;
    border-radius: 15px;
}

#instabox:hover{
    animation-name: gradientSwitch;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    color: white;
}

#instabox:hover span{
    color: white;
}


#zevkunbox{
    background-image: linear-gradient(white 50%, black 50%);
    background-size: 200% 200%;
    background-position: top;
    height: 90px;
    width: 280px;
    border-radius: 15px;
}

#zevkunbox:hover{
    animation-name: gradientSwitch;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    color: white;
}

#zevkunbox:hover span{
    color: white;
}


#twitter{
    display: flex;
    align-items: center;
    padding-left: 30px;
    gap: 50px;
    width: 100%;
    height: 100px;
}

@media screen and (max-width:900px){
    #twitterbox{
        margin-top: 100px;
    }
}


#twittericon{
    color: black;
    font-size: 80px;
    width: 100px;
    padding-bottom: 10px;
}

#instaicon{
    color: black;
    font-size: 70px;
    width: 80px;
    padding-bottom: 5px;
}

#insta{
    display: flex;
    align-items: center;
    padding-left: 20px;
    width: 100%;
    height: 100px;
}

#zevkun{
    display: flex;
    align-items: center;
    padding-left: 30px;
    gap: 5px;
    width: 100%;
    height: 100px;
}

#zevkunicon{
    color: black;
    font-size: 80px;
    width: 100px;
    padding-bottom: 10px;
}

#zevkuntext{
    padding-bottom: 10px;
    padding-left: 50px;
}

#twittertext{
    padding-bottom: 10px;
}

#instatext{
    padding-bottom: 10px;
}

@keyframes gradientSwitch{
    0%{
        background-position: top;
    }
    100%{
        background-position: bottom;
    }
}