
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

* {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body {
  background: #213e54;
  margin: 10% auto 0;
  text-align: center;
}

h1 {
  margin: 50px 0;
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.countDown {
  float: left;
  margin-right: 45px;
  text-align: center;
}

.title {
  display: block;
  margin-bottom: 15px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.countValue {
  float: left;
  width: 100px;
  margin: 5px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
}

.countValue>span {
  margin: auto;
  font-size: 80px;
  font-weight: 700;
  color: #de4848;
}

.location {
  display: block;
  margin-top: 50px;
  font-size: 55px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.location img {
    width: 40px;
    height: auto;
}

.latitude {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {

  h1 {
    margin: 25px 0;
    font-size: 20px;
  }

  .container {
    padding: 10px;
  }

  .countDown {
    margin-right: 5px;
  }

  .title {
    margin-bottom: 7.5px;
    font-size: 15px;
  }

  .countValue {
    width: 40px;
    margin: 2.5px;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  }

  .countValue>span {
    font-size: 40px;
  }

  .location {
    margin-top: 25px;
    font-size: 35px;
  }

  .location img {
      width: 30px;
      height: auto;
  }

  .latitude {
    margin-bottom: 5px;
  }

}