body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: whitesmoke;
  color: black;
  text-align: center;
}
header {
  background-color: black;
  color: white;
  padding: 15px;
}
header h1 {
  margin: 0;
  font-size: 24px;
}
form {
  margin-top: 30px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

form h2 {
  color: green;
  border-bottom: 2px solid green;
  padding-bottom: 10px;
}

form label {
  display: block;
  font-weight: bold;
  margin-top: 10px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  margin-top: 15px;
  padding: 12px 20px;
  background-color: green;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

form button:hover {
  background-color: green;
}
#ramen-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px;
  justify-content: center;
}

#ramen-menu img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#ramen-menu img:hover {
  transform: scale(1.1);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#selected-ramen-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.ramen-card {
  position: relative;
  width: 320px;
}

#selected-ramen-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 0 0 10px 10px;
}

.overlay h3,
.overlay p {
  margin: 5px;
}

#ramen-detail {
  margin-top: 10px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
}

#ramen-detail h2 {
  color: orange;
  border-bottom: 2px solid orange;
  padding-bottom: 10px;
}

#ramen-detail p {
  font-size: 18px;
  margin: 10px 0;
}
