* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(15, 14, 14);
  background: rgb(255, 255, 255);
  overflow: hidden;
}

#devConnect {
  color: #0e0d0d;
  font-size: 50px;
}

.landing {
  position: relative;
  /* background-image: url('images/skoolwapen.png'); */
  background-size: center;
  background-position: center;
  /* height: auto; */
  height: 100vh;
  background-repeat: no-repeat;
}

.landing-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding-top: 50px;
}

.landing h1 {
  font-size: 40px;
}

.landing p {
  font-size: 20px;
}

.countdown {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;
}

.countdown div {
  padding: 20px;
  border: 1px solid #FFF;
  border-radius: 10px;
  margin: 5px;
  opacity: 0.7;
  background: #000;
}

.countdown div:first-child {
  background: #0c7211f6;
}

.countdown span {
  display: block;
  font-size: 25px;
  width: 100px;
}

@media (min-width: 1200px) {
  .landing img {
    width: 25%;
    height: 35%;

  }
}

@media (max-width: 650px) {
  .landing img {
    width: 70%;
  }

  .landing h1 {
    font-size: 40px;
  }

  .countdown {
    font-size: 30px;
    flex-direction: column;
  }

  .countdown div {
    display: none;
  }

  .countdown div:first-child {
    display: block;
    padding: 10px;
  }
}
/* img {
  width: 20%;
  height: 30%;
} */
@media (max-height: 600px) {
  img {
    width: 20%;
  }

  p {
    display: none;
  }
}

@media (max-height: 400px) {
  img {
    padding-bottom: 30px;
  }
  h1 {
    display: none;
  }
}
