*{
    box-sizing: content-box;
    margin: 0px;
}
body{
    background-image: url(images3.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

header{
    position: fixed;
    display: block;
    width: vw;
    margin-top: 0px;
}

.navbar{
    display: inline;
    width: 100%;
    height: 59px;
    margin-left: 0px;
    list-style: none;
}

.navbar ul{
    text-decoration: none;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    font-size: 25px;
    overflow: hidden;
}

.navbar li{
    float: left;
}

.navbar a{
    background-color: hsla(37, 95%, 84%, 0) ;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    padding: 10px;
    font-size: 35px;
}

.navbar a:hover{
    background-color: hsla(0, 0%, 20%, 0.4);
}  
main{
    margin: 20px;
}
#video{
    position:fixed;
    display: block;
    bottom: 20px;
    left: 20px;
}

#video img{
    width: 350px;
}

section{
    display:block;
    margin-top: calc(100vh - 130px);
    width:300px;
    margin-left: auto;
    margin-right: 20px;
    text-align: right;
}  

.team{
    text-align: left;
}

.team h1{
    display: inline-flex;
    font-size: 50px;
    margin-bottom: 10px;
    width: 100px;
}

.team p{
    position: relative;
    top: 10px;
    margin-left: 65px;
    display: inline-flex;
    margin-top: 0px;
    font-size: 25px;
    rotate: -90deg;
}

.team img{
    display: none;
    width: 90px;
}

.team pre{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
    font-size: 18px;
}

footer{
    display: none;
}

@media screen and (max-width:800px){
    header{
        position:relative;
    }
    #video{
        position: relative;
        margin-left:auto;
        margin-right: auto;
        top: -10px
    }
    #video img{
        margin:auto;
    }
    .team{
        text-align: center;
        margin: auto;
        margin-top: calc(50vh - 130px);
    }
    footer{
        display:block;
    }
}

