*{
  margin:0;
  /* padding:0; */
  box-sizing:border-box;
  overscroll-behavior: none;
}
.container {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  /* grid-template-rows: 1fr 1fr 1fr; */
  gap: 5px;
}
.item {
  /* padding: 1em; */
  /* background-color: grey; */
  text-align: center;
}
img {
  width: 55rem;
}
#main {
  display: flex;
  /* background-color: aquamarine; */
  justify-content: center;
  height: 100vh;
  /* width: 150vh; */
  /* border: 10px solid black; */
  /* align-items: center; */
  align-content:center;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 5px;
  overflow-y: auto;
}
#nav {
  display: flex;
  flex-wrap: wrap;
  background-color: black;
  align-self: start;
}
#nav a{
  /* font-family: 'Times New Roman'; */
  /* letter-spacing: 2px; */
  font-family: 'Times'; 
  font-size: 2.625rem;
  text-decoration: none;
  color: white;
  margin-bottom: 2%;
}
ul {
  list-style-type: none;
  text-align: left;
}
button {
  text-decoration: none;
  padding:0;
  margin: 0;
  background: none;
  box-shadow: none;
  border: 0cap;
  font-family: 'Times'; 
  /* font-family: 'Times New Roman'; */
  font-size: 2.625rem;
  color: white
  }
.dropdown a{
    display: block;
    text-decoration: none;
    padding: none;
}
.sub-menu{
    display: none;
    text-align: left;
}
#nav .sub-menu a{
  font-size: 1.375rem;
}
.dropdown:hover .sub-menu {
    display: block;
}
#nav a:hover {
  /* text-shadow: 0 0 3px rgb(211, 226, 51); */
  /* color:rgb(14, 14, 172); */
  color: white;
  font-style: italic;
  margin-left: -5%;
  background-color: rgb(176, 157, 72);
}
#button a:hover{
  font-style: italic;
  color:rgb(162, 52, 52);
}
#navigation {
  margin-top: 15%;
  margin-left: 15%;
}
@media(max-width:42em){
  .container{
    display: flex;
    flex-direction: column;
  }
  img {
    width: 23rem;
  }
  #nav {
    display: flex;
  }
  #navigation {
    margin: 0%;
  }
  #main {
    height: 80vh;
  }
  li {
    display: inline-block;
  }
}