@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,500;0,800;1,200&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


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

}
body {
    background-color: white;
}

.topnav-header {
    width: auto;
    height: 80%;
    margin: auto;
    background-color: rgb(32, 32, 32);
}

.topnav-innerheader {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
}

.logocontainer{
    height: 100%;
    width: auto;
    display: table;
    float: left;
    overflow: hidden;
    padding-bottom: 1%;
}

@media (min-width: 720px) {

    .topnav-innerheader {
        width: 90%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 30px 10%;
    }
    
    
    .logocontainer{
        height: 100%;
        width: auto;
        display: table;
        float: left;
        overflow: hidden;
    }
    
    
}

.logocontainer img {
    margin-right: auto;
    width: 60px;
    height: 60px;
}

.logocontainer h1 {
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
    font-size: 32px;
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
    color: white;
}
.logocontainer h1 span {
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.navlinks {
    float: right;
    height: 100%;
    list-style: none;
}

.navlinks li {
    display: inline-block;
    padding: 0px 10px;
    border-color: rgb(219, 219, 219);
    border-right-style: solid;
    border-width: 2px;
    transition: all 0.3s ease 0s;
}

.navlinks li a {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 15px;
    transition: all 0.3s ease 0s;
}

.navlinks li a:hover {
    color: cornflowerblue;
    font-weight: bolder;
}

.navlinks li:hover {
    border-color: cornflowerblue;
    border-width: 4px;
}