body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: dodgerblue;
  color: #333;
  margin: 0;
  padding: 20px;
}

header h1 {
  text-align: center;
  font-size: 2.5rem;
  color: wheat;
  margin-bottom: 0;
}

hr {
  border: none;
  height: 2px;
  background: wheat;
  width: 60%;
  margin: 10px auto 20px;
}


h2 {
  color: wheat;
  margin-top: 20px;
}

h3 {
  margin-top: 15px;
  color: lightgreen;
}

.sport-container {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
}


#football, #volleyball, #basketball {
  flex: 1;  
  background: white;
  min-width: 250px;
  border: 2px solid #93c5fd;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.for-sport {
    display: flex;
    justify-content: center;
    justify-content: space-between;
    gap: 10px; 
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.for-sport label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
}

form {
  background: white;
  border: 2px solid lightblue;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

form label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

form input[type="text"] {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  box-sizing: border-box;
}

form input[type="submit"] {
  background: wheat;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form input[type="submit"]:hover {
  background: blue;
}

#result {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 15px;
}
