* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  background-image: url("Images/rs=w_1440,h_1440.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 85vh;
}

header {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

header img {
  max-width: 100%;
  height: auto;
}
.logo {
  max-width: 440px;
  height: auto;
}

.email {
  color: white;
  text-align: center;
  position: absolute;
  bottom: 20%;
  width: 100%;
  text-decoration: none;
  font-size: 1.8rem;
}
footer {
  background-color: #161616;
  color: white;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 15%;
  display: flex;
  justify-content: center;
}

footer p {
  margin: 0;
  padding-top: 1.8rem;
  font-size: 1.2rem;
  color: #a9a9a9;
}

@media (max-width: 768px) {
  .logo {
    max-width: 280px;
  }

  .email {
    font-size: 1.2rem;
  }

  footer {
    height: 20%;
  }

  footer p {
    font-size: 1rem;
  }

  .email {
    padding-bottom: 40px;
  }
}
