*{
    margin: 0;
    padding: 0;
    font-family: "Lucida Console", monospace, sans-serif;
}

.content{
    float: none;
    width: 100%;
}

/* --------------------NAVBAR-------------------- */
/* top navbar sizing */
.navbar{
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Border */
    border-bottom: solid;
    border-radius: 30px;
    border-color: floralwhite;
}

.logo{
    width: 150px;
    cursor: pointer;
    margin: 0 0 0 80px;
}

/*------------------CONTENT--------------------*/
.head{
    padding-left: 75px;
    padding-right: 30px;
}

h1{
    font-family: sans-serif;
    font-size: 35px;
    color: white;
    margin-top: 20px;
    margin-left: 150px;
    text-decoration: underline overline;
    text-decoration-color: cyan;
}

h2{
    font-size: 22px;
}

p{
    font-size: 18px;
    font-style: italic;
}

.video1{
    float: left;
    text-align: center;
    padding-top: 50px;
    padding-left: 70px;
    }

.video2{
    float: right;
    display: grid;
    text-align: center;
    padding-top: 50px;
    padding-right: 95px;
    }

/* --------------------SLIDEBAR-------------------- */
.main-menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 45px;
    height: 65%;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 15px;
    margin-top: 180px;
    z-index: 100;
    /* background */
    background-color: rgba(0, 0, 0, 0.8);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    /* prevent text from going bottom */
    overflow: hidden;
    white-space: nowrap; 
    box-shadow: 0 0 10px #d4d4d4;
    /* transition */
    transition: 0.3s ease;
}

.main-menu:hover{
    width: 12%;
    overflow-y: scroll;
}

.menu-item{
    padding: 10px; 
    /*align center*/
    display: block;
    padding-top: 25px;
    padding-bottom: 25px;
    /*align center*/
    display: block;
    transform: translate( 0%, 18%);
}

.menu-item:hover{
    cursor: pointer;
}

.main-menu .menu-item .far, .fas{
    font-size: 25px;
    width: 35px;
    color: rgb(255, 255, 255);
    padding-right: 5px;
}

.main-menu ul a{
    color: white;
    font-family: "Lucida Console";
    transition: .4s;
}

ul li:hover a{
    padding-left: 30px;
}

::-webkit-scrollbar{
    width: 5px;
}

::-webkit-scrollbar-track{
    background: transparent !important;
}

::-webkit-scrollbar-thumb{
    background: white;
    border-radius: 10px;
}
/* --------------------BACKGROUND IMAGE-------------------- */
.banner{
    background: url("background.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    transition: all .3s ease;
}

/* --------------------BUTTON STYLES-------------------- */
/* button style */
button{
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 50px 0 50px 43%;
    border-radius: 15px;
    font-weight: bold;
    border: 2px solid #009688;
    background: transparent;
    color: white;
    cursor: pointer;
}

/* Button hover */
button:hover{
    color: darkblue;
    background-color: white;
}

.bullet2{
    font-size: 20px;
    padding-top: 30px;
    margin: 20px;
    color: white;
    background-color: black;
}

.bullet3{
    font-size: 20px;
    padding-top: 30px;
    margin: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0);
}

/* --------------------TABLE-------------------- */
/* Table */
table{
    background-color: transparent;
    border: 1px solid whitesmoke;
    border-collapse: collapse;
    width: 90%;
    margin: 20px auto 30px auto;
}

th,td{
    border: 1px solid whitesmoke;
    border-collapse: collapse;
    background-color: transparent;
    padding: 20px;
}