:root{
  --font: 'Arial', sans-serif;
  --max-width: 600px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: var(--font);
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.img-logo {
  width: 300px;
  
}

h2 {
  margin-bottom: 1rem;
  text-align: center;
}

select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#goButton,
#mapButton {
  width: 100%;
  display: none;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #4285f4;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
}

#mapButton:hover {
  background-color: #3367d6;
}

#goButton:hover {
  background-color: #0056b3;
}