/* styles.css */

/* General styles */
body {
  font-family: Arial, sans-serif;
  background-color: #E27D60;
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-section {
  margin-bottom: 20px;
}

.input-section label {
  margin-bottom: 5px;
}

.input-section input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

.button-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.button-section button {
  background-color: #41B3A3;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  margin-left: 10px;
  margin-bottom: 10px;
}

.button-section button:hover {
  background-color: #308078;
}

#result {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
