@font-face {
    font-family: "inter-variable", sans-serif;
    font-weight: 300;
    font-style: normal;
    src: url(https://use.typekit.net/ypi0sno.css);
    }

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: "inter-variable", sans-serif;
    font-weight: 300;
    font-style: normal;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
   }
   
.container {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 30px 1fr 30px; 
    }
   
.header {
    border-bottom: 1px solid grey;
    padding-left: 20px;
    padding-right: 0px;
    padding-bottom: 15px;
    padding-top: 20px;
    height: fit-content;
    background-color: white;
    z-index: 3;
    display: grid;
    grid-template-columns: 76% 10% 4% 10%;
    }

.sidebar {
    border-right: 1px solid grey;
    padding-top: 25px;
    }
   
.body {
    display: grid;
    grid-template-columns: 1fr 3fr;
    overflow: hidden;
    height: 100vh;
   }
   
.content {
    overflow-y: scroll;
    padding-top: 0px;
    }

.menu {
    display: grid;
    grid-template-columns: 1fr;
    background-color: none;
    padding-top: 10px;
    }   

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: none;
    grid-row-gap: 0;
    }

.grid-item {
    background-color: none;
    height: fit-content;
    position: relative;
    }

.grid-item-img {
    background-color: none;
    position: relative;
    }

img {
    width: 100%;
    height: 100%;
    }

video {
    width: 100%;
    }
    
hr {
  border: none;
}

.dashed {
    border-top: 1px solid grey;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    }

p {
    max-width: 600px;
    text-align: left;
    font-size: 12px;
    font-weight: 300;
    padding-left: 20px;
    padding-right: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    }

h1{
    font-size: 14px;
    font-weight: 300;
    padding-left: 20px;
    padding-right: 25px;
    padding-top: 4px;
    padding-bottom: 10px;
    line-height: 30px;
    }

h2{
    font-size: 14px;
    font-weight: 300;
    padding-left: 20px;
    padding-top: 10px;
    }

h3{
    font-size: 14px;
    font-weight: 300;
    padding-left: 20px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: -10px;
    line-height: 22px;
    }

.logo {
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    }

button {
    font-family: "inter-variable", sans-serif;
    border: none;
    background-color: white;
}

button:hover{
    text-underline-offset: 0.5 ;
    text-decoration: underline;
    color: grey;
    }

.change-cat {
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    margin-top: -6px;
    }

.divider{
    text-align: center;
    font-size: 14px;
    }

a{
    color: black;
    text-decoration: none;
    }

a:hover{
    text-decoration: underline;
    color: grey;
    }

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
    padding-left: 20px;
    padding-bottom: 10px;
    font-weight: 400;
    }

li {
    float: left;
    padding-right: 40px;
    }
  
li a {
    display: block;
    color: white;
    text-align: left;
    padding: 0px;
    text-decoration: none;
    }

.close-btn {
    font-family: "inter-variable", sans-serif;
    font-size: 14px;
    padding-left: 20px;
    padding-bottom: 20px;
    bottom: 0;
    position: absolute;
    }

.no-stretch {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    width: 45%;
    }
    
        @media only screen and (max-width: 768px) {
          
            body {
                overflow-y: auto;
            }

            .body {
                display: block;
                overflow: auto;
                }
    
            .container {
                display: block;
                }
    
            .grid-container {
                grid-template-columns: 1fr;
                }
                
            .header {
                display: block;
                }

            .sidebar {
                padding-top: 5px;
                border-right: none;
                border-bottom: 1px solid grey;
                }

            .no-stretch {
                width: 100vw;
                overflow: hidden;
                margin-top: 0;
            }
        
        }