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

.container {
  text-align: center;
}

.logo {
  width: 150px;
  height: 150px;
}

h1 {
  font-size: 2.5rem;
}

button {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
  margin-top: 20px;
}

button:hover {
  background-color: white;
  color: black;
}
