* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background-color: seashell;
}

.header {
  height: 10vh;
  background-color: black;
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 10vh;
}

.container {
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.title {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-top: 20px;
}

.subtitle {
  font-size: 24px;
  color: #666;
  margin-top: 10px;
}

.button {
  width: 200px;
  height: 50px;
  border: none;
  border-radius: 25px;
  background: grey;
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #ff9900;
}

/* Footer styles */
.footer {
  width: 100%;
  height: 10vh;
  background-color: #333;
  color: white;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.footer-logo {
  width: 150px;
  height: 50px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.footer-link {
  margin: 10px;
}

.footer-link a {
  color: black;
  text-decoration: none;
}

.footer-link a:hover {
  color: #ff9900;
}

.footer-address {
  margin: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-logo {
    margin-bottom: 20px;
  }
}