@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@400;600;700&family=Rubik:wght@400;500;700&family=Ubuntu:wght@400;500&display=swap');

@import "./header_style.css";
@import "./content_style.css";
@import "./form-style.css";
@import "./footer-style.css";

*{
    margin: 0;
    padding: 0;
}
body{
    overflow-x: hidden;
}
.main{
    background-color: white;
    padding: 10px;  
    height: 100%;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto ;
    transition: ease 0.3s;
}

.sidenav {
    display: none;
    height: 100%;
    width: 20vw; 
    position: fixed;
    z-index: 1;
    text-align: center;
    top: 0;
    left: 0;
    background-color: #1c9dbd;
    padding-top: 20px;
    font-family: 'Montserrat', sans-serif;
    transition: ease 0.3s;
}
.mid{
    position: relative;
    top: 30%;
}
.sidenav h1{
    font-size: 25px;
    margin-bottom: 10px;
}
.sidenav a {
    padding: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    display: block;
}

.sidenav a:hover {
    color: #d3d2d2;
}  

@media (min-width: 900px){
    .main{        
        margin-left: 20vw;
    }
    .sidenav{
        display: block;
    }
}