body {
  background-color: lightgrey; 
  font-family: Arial, sans-serif;
}

.flex-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;  
}

.flex-list li {
  flex: 1;
  border-radius: 4px;
  border: 2px solid darkgrey;
  margin-right: 5px;
  text-align: center;
  font-size: 0.9em;
  padding: 1px;
  text-decoration: none;
  color: black;
  font-family: Arial, sans-serif;
}

.flex-list li:last-child {
  margin-right: 0;  
}

.contain {
  width: 60%;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  border-radius: 4px;
  border: 2px solid darkgrey;
  padding: 5px;
  font-family: Arial, sans-serif;
}

.header {
  width: 60%;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  border-radius: 4px 4px 0 0;
  border-width: 2px 2px 0 2px;
  border-color: darkgrey;
  border-style: solid;
  padding: 5px;
}

.header h3 {
  padding: 0;
  padding-top: 10px;
  margin: 0;
  font-family: Arial, sans-serif;
}

.para {
  width: 60%;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  border-radius: 0 0 4px 4px;
  border-width: 0 2px 2px 2px;
  border-color: darkgrey;
  border-style: solid;
  padding: 5px;
  font-size: 0.8em;
}

.footer {
  font-size: 0.75em;
}

.footer p {
  padding: 2px;
  margin: 0;
  font-family: Arial, sans-serif;
}

.item-container {
  margin: 0;
  padding: 0;
  margin-top: 5px;
  height: fit-content;
  width: 100%;
  border: none;
  display: flex;
}

.item-left {
  margin: 0;
  aspect-ratio: 1;
  border: 1px solid;
  border-radius: 5px;
  max-width: 100px;
  width: 100px;
  flex-shrink: 0;
  display: flex; 
  justify-content: center; 
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.item-left img {
  max-width: 100%;
  height: auto;
}

.item-right {
  margin: 0;
  margin-left: 5px;
  height: fit-content;
  border: none;
  flex: 1;
  padding: 5px;
}

.item-right p {
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

/*below is dropdown copypasted from w3schools*/

.dropbtn {
  background-color: #eeeeee;
  color: black;
  padding: 2px 5px;
  cursor: pointer;
  border: 1px solid grey;
  border-radius: 3px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #eeeeee;
  min-width: 200px;
  border-radius: 4px;
  border: 1px solid grey;
}

.dropdown-content a {
  color: black;
  padding: 5px 8px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ffffff;
}

.dropdown:hover .dropdown-content {
  display: block;
  border-radius: 0 3px 3px 3px;
}

.dropdown:hover .dropbtn {
  background-color: #f1f1f1;
  border-radius: 3px 3px 0 0;
}
