#select-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  /* border:solid 2px black; */
}
.select-option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;;
  height: 200px;
  gap: 20px;
  border: solid 2px black;
}
.img{
  width: 50%;
  height: 50%;
  overflow: hidden;
}
.title {
  font-size: 24px;
  font-weight: bold;
  color: rgb(161, 112, 6);
}
.menu {
  background-color: blue;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.logo {
  align-self: flex-start;
  width: 100px;
  height: auto;
}