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

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 20px;
}

.logo {
  display: block;
  width: 33%;
  height: auto;
  margin-bottom: 5px;
}

h1 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 15px;
}

.description {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 30px;
  max-width: 600px;
}

.main-image {
  display: block;
  max-width: 69%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer {
  text-align: center;
  margin-top: 20px;
  padding: 20px 0;
  width: 100%;
  color: #555;
  font-size: 0.95rem;
}

.footer a {
  color: #003366;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}


@media only screen and (max-width: 375px) {
	.logo {
	width: 35%;
	}
	.main-image {
	max-width: 89%;
	}
}