*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    height: 10%;
}
.logo img{
    width: 200px;
    
}
.logo{

    margin-left: 35px;
}
.logout-but{
    margin-right: 35px;
}
.logout-but a{
    text-decoration: none;
}
.logout-but button{
    width: 100px;
    border-style: solid;
    border-color: black;
    padding: 10px 8px;
    outline: none;
    color: #000;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
}
nav{
    width: 20%;
    background-color: #2bbae6;
    position: absolute;
    z-index: 2;
    height: 90%;
}
nav ul{
        margin-top: 30px;

}
nav ul hr{
    color: white;
}
nav ul li{
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 25px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;

}
.display{
    position: absolute;
    margin-right: 0;
    background: black;
    height: 90%;
    width: 100%;
}
.container{

}
.dashboard{
    display: flex;
    justify-content: space-evenly;
    max-width: 100%;
    position: relative;
    float: right;
    top: 30vh;
    margin-right: 10%;
}
.dashboard .row{
    width: 60vh;
    height: 30vh;
    border-style: solid;
    border-color: white;
    border-width: 1px;
}
.dashboard .row h2{
    color: white;
    font-size: 25px;
    text-align: center;
    font-weight: 100;
    margin-top: 30px;
}
.dashboard .row h1{
    color: green;
    text-align: center;
    font-size: 40px;
    margin-top: 30px;
}
.dashboard .row3{
    width: 20px;
}
.form{
    margin-top: 30vh;
}
@media only screen and (max-width:700px){
    *{
        display: none;
    }
}