* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Playfair Display', serif;
}

body {
  background: url('../img/bg.avif') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
}

.logo {
  max-width: 250px;
  margin-bottom: 30px;
}

h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

p {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact a {
  color: #ffffff;
  text-decoration: underline;
}

.timer {
  font-size: 22px;
  margin: 20px 0;
  letter-spacing: 2px;
}

.contact-box {
  margin-top: 30px;
}

.contact-box h2 {
  margin-bottom: 10px;
}

.contact-box a {
  color: #fff;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

