body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.phone-frame {
  width: 375px;
  height: 667px;
  border: 16px solid #000;
  border-radius: 30px;
  background-color: #fff;
}

.phone-screen {
  padding: 20px;
}

.weather-info {
  text-align: center;
}

.weather-image {
  width: 100px;
  height: 100px;
  margin-top: 10px;
}

.clothing-advice {
  margin-top: 20px;
  text-align: center;
}

.clothing-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.clothing-item {
  width: 60px;
  height: 60px;
}

.more-info {
  margin-top: 10px;
}

button {
  padding: 10px 20px;
  background-color: white;
  color: black; 
  border: 1px solid black; 
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

button:hover {
  background-color: #f0f0f0; 
}

.additional-info,
.fortune {
  margin-top: 30px;
  text-align: center;
}

h2,
h3 {
  font-size: 18px;
}

.day-selection {
  margin-top: 30px;
  text-align: center;
}

select {
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
