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

body,
html {
  height: 100%;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

.background {
  background: url("/assets/images/kitchen.jpg") no-repeat center center/cover;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  filter: brightness(0.6);
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo img {
  width: 220px;
  height: auto;
  border-radius: 6px;
}

.content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

p.description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

.contact-info {
  position: absolute;
  bottom: 120px;
  margin-top: 4.5rem;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 900;
  color: #ddd;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
}

footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.85rem;
  color: #bbb;
  width: 100%;
  text-align: center;
}

@media (max-width: 500px) {
  h1 {
    font-size: 2.2rem;
  }

  p.description {
    font-size: 1rem;
  }

  .logo {
    left: 50%;
    transform: translateX(-50%);
  }

  .logo img {
    width: 150px;
    height: auto;
  }
}
