*{
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}
body{
  background-color: rgb(197, 184, 170);
}
header{
  background-color: black;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 50px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
nav a{
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: white;
  color: black;
  border-radius: 10px;
  margin: 0 2px;
  transition: .3s ease;
}
nav a:hover{
  background-color: rgb(236, 194, 149);
  color: rgb(0, 0, 0);
}
.logo{
  width: 60px;
  height: 60px;
  border-radius: 10px;
}
.menu{
  width: 40px;
  height: 40px;
  display: none;
  cursor: pointer;
}
#check{
  display: none;
}

.logo1{
  width: 200px;
  border-radius: 100%;
}
div p{
  padding: 20px;
  text-align: center;
  font-family: cursive;
  font-size: 18px;
}
footer{
  padding: 10px;
  background-color: black;
  text-align: center;color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  top: 100%;
  left: 0;
  right: 0; 
}
h3{
  color: white;
  font-weight: 600;
}
@media(min-width:500px){
  h3{
    display: none;
  }
}
@media(max-width:500px){
  header nav{
    position: absolute;
    background-color: black;
    padding: 10px;
    top: 90px;
    left: -100%;
    right: 0;
    height: 100%;
    width: 80vw;
    display: block;
    transition: .3s ease;
    border-top-right-radius: 20px;
  }
  nav a{
    display: block;
    margin: 5px 0;
  }
  .menu{
    display: block;
  }

#check:checked ~ nav{
    left: 0;
    transition: .3s ease;
  }
 h2{
  display: block;
 }
}