*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

html{
    font-family: 'Montserrat', sans-serif;
}
header{
    background-color: #023047;
    display: flex;
    height: 5rem;
    justify-content: space-between;
    align-content: center;
    padding-left: 1rem;
    padding-top: 1rem;
}

.logo{
    height: 3em;
}

.menu{
    line-height: 3em;
}
nav ul li{
    display: inline-block;
    margin: 0 1em;
}

nav ul li a {
    color: white;
    padding: 7px;
    border-radius: 5px;
}

li a.active, li a:hover{
    background-color: #FB8500;
}

.checkbtn{
    color: white;
    font-size: xxx-large;
    float: right;
    line-height: 1em;
    margin-right: 0.5em;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}
