    @font-face 
    {
        font-family: 'Raleway-Light';
        src: url('../Raleway-Light.ttf');
    }
@media screen and (min-width:900px) and (max-width:5000px)
{
    .header
    {
        min-height: 120px;
        max-height: 150px;
        background-color: rgb(255, 255, 255);
        display:flex;
        justify-content: center;
    }
    .dropdown
    {
        display:none;
    }
    .menu
    {
        margin:0px;
        display:flex;
        height:70px;
        width:100%;
        flex-direction: row;
        justify-items: center;
    }
    .centering-menu
    {
        margin-top:40px;
        border: 0px;
        display:flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        align-content: center;
        width:100%;
    }
    ul
    {
        list-style: none;
        margin:0;
    }
    a 
    {
        text-decoration:none;
        color:rgb(0, 0, 0);
        width:170px;
        font-family: 'Raleway-Light'
    }
    table 
    {
        width:100%;
    }
    li
    {
        font-size:13pt;
        padding-left:25px;
        padding-right:25px;
        text-align: center;
        margin:0px;
        height:30px;
        border:0px;
        list-style: none;
    }
    a:hover
    {
        color:rgb(110, 87, 51);
        border-bottom: 1px solid rgb(110, 87, 51);
    }
    .logo
    {
        min-width:140px;
        max-width:200px;
    }
}

@media screen and (min-width:1px) and (max-width:899px)
{
    .menu
    {
        display:none;
    }
    .header
    {
        height: 60px;
        min-height: 120px;
        max-height: 150px;
        background-color: rgb(255, 255, 255);
    }
    .logo
    {
        max-height:85px;
        min-height:65px;
        background-image: url('../images/logo.jpg');
        background-size:cover;
    }
    table 
    {
        width:100%;
    }
    .dropbtn 
    {
        width: 55px;
        height: 55px;
        background-image:url("../images/hamburger.svg.png");
        background-size:cover;
        margin-left: 6px;
        border:none;
        margin-top:10px;
        padding-top:10px;
    }
    .dropdown 
    {
        margin-left: 6px;
        display: inline-block;
    }
    .dropdown-content 
    {
        display: none;
        position: relative;
        left: 0px;
        background-color: #f1f1f1;
        min-width: 160px;
        overflow: auto;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }
    .dropdown-content a 
    {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
    .dropdown a:hover 
    {
        background-color: #ddd;
    }
    .show 
    {
        display: block;
    }
}

@media screen and (min-width:290px) and (max-width:477px)
{
    .logo
    {
        height: 60px;
    }
    .header
    {
        height:50px;
    }
}

@media screen and (min-width:100px) and (max-width:289px)
{
    .logo
    {
        height:20px;
    }
    .header
    {
        height:30px;
    }
    .dropbtn 
    {
        width: 45px;
        height:45px;
        vertical-align: top;
    }
}