body {
  margin: 0;
  background-color: #051a2e;
  color: white;
  font-family: Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 240px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.text {
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: #0099ff;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .content {
    flex-direction: row;
    text-align: left;
  }

  .logo {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
