* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}
body {
  background-image: url("../images/rat.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}
.nav {
  display: none;
}
.sidenav {
  font-family: 'Poppins', sans-serif;
  height: 100%; 
  width: 0; 
  position: fixed;
  z-index: 2; 
  top: 0; 
  left: 0;
  background-color: #baa864; 
  overflow-x: hidden;
  padding-top: 60px; 
  transition: 0.5s;
}


.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.3s;
}


.sidenav a:hover {
  transition: 0.5s;
  color: #FCE9d2;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
.page {
  transition: margin-left .5s;
}
.page .sidebar {
  height: 100vh;
  width: 50px;
  float: left;
  background-color: #baa864;
  top: 0;
  left: 0;
  position: fixed;
  opacity: 0.8;
  z-index: 1;
}

.page .sidebar .toggle{
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin-left: 9px;


}
.page .sidebar .toggle::before{
  content: "";
  position: absolute;
  top:7px;
  width: 100%;
  height: 2px;
  background: white;
}

.page .sidebar .toggle::after{
  content: "";
  position: absolute;
  bottom:7px;
  width: 100%;
  height: 2px;
  background: white;
}

.page .row {
  content: "";
  clear: both;
  width: 96%;
  height: 70vh;
  text-align: center; 
  margin-left: 80px; 
}

.page .row .column {
  width: 23%;
  height: 70vh;
  float: left;
  background-color: white;
  opacity: 0.8;
  margin: 5px;
  font-family: 'Poppins', sans-serif;
  color: #4a270a;
  font-size: 15px;
  border-radius: 20px;
  padding: 10px; 
}

.page .row .column a {
  padding: 5px 10px;
  background-color: #FCE9d2;
  border: solid;
  opacity: 1;
  border-color: #baa864;
  border-radius: 20px;
  text-decoration: none;
  color: #baa864;
}

.page .row .column a:hover {
  transition: 0.5s;
  opacity: 1;
  background-color: #baa864;
  border-color: #FCE9d2;
  color: #FCE9d2;
  font-size: 15px;
}
section#not {
  transition: margin-left 0.5s; 
}
section .notlisted {
  margin-top: 50px;
  width: 90.5%;
  margin-left: 85px;
  background-color: white;
  opacity: 0.8;
  border-radius: 20px;
  text-align: center;
  color: #4a270a;
  font-family: 'Poppins', sans-serif;
  padding: 20px;  
}

section .notlisted h3 {
  font-size: 2em;
}

section .notlisted p {
  font-size: 1.5em;
}

section .notlisted a {
  padding: 5px 5px;
  background-color: white;
  border: solid;
  border-color: #baa864;
  text-decoration: none;
  color: #baa864;
  border-radius: 20px;
  opacity: 1;
}

section .notlisted a:hover {
  background-color: #baa864;
  color: white;
  border-color: white;
  transition: 0.5s;
}

@media screen and (max-width: 1256px){
    .sidebar {
    display: none;
  }
  .nav {
    display: inherit;
    background-color: #baa864;
    top: 0;
    width: 100%;
    text-align: center;
    position: fixed;
    opacity: 0.8;
    z-index: 5;
  }
  .nav li {
    display: inline-block;
    padding: 5px;
    
  }
  .nav li a {
    text-align: center;
    text-decoration: underline;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
  }
  .page .row {
    margin-left: 25px;
    margin-top: 30px;
  }
  .page .row .column {
    height: 80vh;
  }
  section .notlisted {
    display: none;
  } 
}

@media screen and (max-width: 600px) {
  .page .row .column {
    width: 100%;
    height: 50vh;
  }
  .page {
    margin: -10px;
  }
  .page .row {
    margin-left: 0px;
    margin-top: 50px;
  }
  #not{
    width: 100%;
    margin-left: 0px;
  }
  section .notlisted {
    display: none;
  }

  section .notlisted h3 {
  font-size: 15px;
}

  section .notlisted p {
    font-size: 10px;
  }

}