*{
    font-family: 'futura light', sans-serif;
    color: black;
}

html {
    scroll-behavior: smooth;
}

html, body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

.header{
    padding-top: 2%;
    padding-bottom: 2%; 
    /* margin-left: 15%;
    margin-right: 15%;
    width: 70%; */
    width: 100%;
    position: fixed;
    font-size: 1.1em;
    background-color: white;
}

.navbar{
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: 20%;
    width: 60%;
}

.navbar a {
    float: center;
    font-size: 16px;
    color: black;
    text-align: center;
    padding: 10px 10px;
    text-decoration: none;
}

.navbar div::after {
    content:'';
    width: 0%;
    height: 2px;
    background: #b0bec5;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.navbar div:hover::after{
    width: 100%; 
}

.navbar a::after {
    content:'';
    width: 0%;
    height: 2px;
    background: #b0bec5;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.navbar a:hover::after{
    width: 100%; 
}

.dropdown {
    overflow: hidden;
}

.dropdown .dropdown-menu {
    cursor: pointer;
    font-size: 16px;  
    border: none;
    outline: none;
    padding: 10px 10px;
    background-color: inherit;
    margin: 0;
  }
  
.no-dropdown .no-dropdown-menu {
    cursor: pointer;
    font-size: 16px;  
    border: none;
    outline: none;
    padding: 10px 10px;
    background-color: inherit;
}

.navbar a:hover, .dropdown:hover .dropdown-menu, .dropdown-menu:focus {
    background-color: white;
}

.dropdown-items {
    display: none;
    position: absolute;
    top: 100%;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-left: -4.5%;
}

.dropdown-items a {
    float: none;
    color: black;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown-items a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

.awards-page {
    margin-top: 15%;
    margin-left: 20%;
}
