@import url('https://fonts.googleapis.com/css2?family=Yellowtail&family=Yusei+Magic&display=swap');

@font-face {
  font-family: "skywalker";
  src: url(../skywalker-demo.otf) format("opentype");
}

* {
  padding: 0;
  margin: 0;
  color: white;
  text-align: center;
}

body {
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  background-image: url(https://life-is-tech.com/schoolcup/images/header-cm.jpg);
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
}

h1 {
  font-family: 'skywalker', cursive;
  color: #FFCD00;
  font-size: 24pt;
}

img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 80px;
}

p {
  margin-top: 48px;
  font-size: 38pt;
  font-family: 'Yusei Magic';
}

#countdown {
  font-size: 54pt;
}

.box {
  margin-bottom: 130px;
  width: 100%;
}

@media screen and (max-width:768px) {
  h1 {
    font-size: 20pt;
  }

  img {
    width: 54px;
  }

  p {
    margin-top: 32px;
    font-size: 24pt;
  }

  #countdown {
    font-size: 32pt;
  }

  .box {
    margin-bottom: 100px;
  }
}

@media screen and (max-width:500px) {
  h1 {
    font-size: 16pt;
  }

  img {
    width: 64px;
  }

  p {
    margin-top: 24px;
    font-size: 16pt;
  }

  #countdown {
    font-size: 22pt;
  }

  .box {
    margin-bottom: 70px;
  }
}