*{
    margin: 0;
    padding: 0;
    font-family: "Lucida Console", 'Trebuchet MS', sans-serif ;
}

/* --------------------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: 30px;
    padding-top: 30px;
}

.content{
    float: right;
    width: 97%;
}

h1{
    font-size: 35px;
    font-family: sans-serif;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: cyan;
    padding-bottom: 10px;
}

h3{
    font-family: "Lucida Console";
}

p{
    font-family: 'Trebuchet MS';
    font-size: 18px;
    font-style: italic;
    font-weight: bold;
}

td{
    padding: 20px;
}

table{
    width: 100%;
    height: auto;
    margin-top: 30px;
}

iframe{
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border: 2px solid;
    border-color: rgb(245, 245, 245, 0.9);
    display: block;
}

.video{
    display: grid;
    position: relative;
    text-align: center;
    padding-top: 50px;
}

/* --------------------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;
    height: auto;
    min-height: 980px;
    transition: all .5s;
}

/* --------------------BUTTON STYLES-------------------- */
/* button style */
button{
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 50px auto;
    border-radius: 15px;
    font-weight: bold;
    border: 2px solid #009688;
    background: transparent;
    color: white;
    cursor: pointer;
    display: block;
}

/* Button hover */
button:hover{
    color: darkblue;
    background-color: white;
}


.bullet2{
    font-size: 20px;
    padding-top: 30px;
    margin: 20px;
    color: white;
    background-color: black;
}
