* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-color: #F8D320;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  max-width: 300px;
  margin-bottom: 30px;
}

h1 {
  color: #00205b;
  font-size: 24px;
  margin-bottom: 20px;
}

p {
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}
