/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 20px;
}

h1 {
  font-family: 'Times New Roman', serif;
  font-size: 3rem;
  color: #000;
}

h2 {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: #666;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  width: 100%;
  max-width: 500px;
}

input[type='text'] {
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 10px;
  border: 2px solid #000;
  border-radius: 30px;
  font-size: 1rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

input[type='text']:focus {
  border-color: #6b8ea2;
  outline: none;
}

select {
  width: 50%;
  padding: 10px 20px;
  margin-bottom: 10px;
  border: 2px solid #6b8ea2;
  border-radius: 30px;
  font-size: 1rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

button {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #6b8ea2;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

button:hover {
  background-color: #6b8ea2;
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

#results {
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
  text-align: left;
}

#results p {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.about-link {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  color: #000000;
  font-family: Arial, sans-serif;
}

.about-link:hover {
  color: #0063cc;
}

/* About content styles */
.centered {
  text-align: justify;
}