@import url('font-face.css');

h1 {
  font-family: 'Dancing Script', cursive;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('background_no_text.webp') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  color: #4a3a2c;
}

#headline {
  font-family: 'Dancing Script', cursive;
  margin: 0;
}

/* Desktop */
@media (min-width: 1025px) {
  #headline {
    font-size: 9vw;
  }
  #countdown {
    margin-top: 2vh;
    font-size: 2vw;
    display: flex;
    justify-content: center;
    gap: 3vw;
  }
}

/* Mobil vertikal */
@media (max-width: 768px) and (orientation: portrait) {
  #headline {
    font-size: 16vw;
  }
  #countdown {
    margin-top: 4vh;
    font-size: 6vw;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 4vw 8vw;
    justify-content: center;
  }
}

/* Mobil horisontal */
@media (max-width: 900px) and (orientation: landscape) {
  #headline {
    font-size: 16vw;
  }
  #countdown {
    margin-top: 6vh;
    font-size: 5vw;
    display: flex;
    justify-content: center;
    gap: 6vw;
  }
}
