@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  padding-top: 4rem;
  max-width: 1450px;
  margin: 0 auto;
}

#title {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 48px;
  font-weight: 900;
}
#title #selector {
  color: #009a00;
}

#covidEmote {
  position: relative;
  width: 464px;
  height: 371px;
  background: url(./Assets/maskedEmote.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 3rem auto;
}
#covidEmote::before {
  content: "";
  position: absolute;
  right: 90%;
  top: -25%;
  height: 512px;
  width: 512px;
  background: url(./Assets/coronavirus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
#covidEmote::after {
  content: "";
  position: absolute;
  left: 90%;
  top: 0;
  height: 512px;
  width: 512px;
  background: url(./Assets/coronavirus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transform: rotate(-30deg);
}

#report {
  margin: 0 auto;
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#report .confirmedCases,
#report .dischargedCases,
#report .deadPatients {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#report .confirmedCases h3,
#report .dischargedCases h3,
#report .deadPatients h3 {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 58px;
}
#report .confirmedCases #confirmed_number {
  color: #fa4616;
  text-shadow: 2px 2px black;
}
#report .dischargedCases #discharged_number {
  color: #009a00;
  text-shadow: 2px 2px black;
}
#report .deadPatients #death_number {
  color: #fa4616;
  text-shadow: 2px 2px black;
}

@media screen and (min-width: 320px) and (max-width: 812px) {
  #covidEmote {
    width: 100vw;
    margin: 0;
  }
  #covidEmote::before {
    content: "";
    position: absolute;
    right: 0;
    top: -25%;
    height: 206px;
    width: 206px;
    background: url(./Assets/coronavirus.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  #covidEmote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 80%;
    height: 206px;
    width: 206px;
    background: url(./Assets/coronavirus.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transform: rotate(-30deg);
  }

  #report {
    flex-wrap: wrap;
  }
  #report div {
    margin: 1rem 0;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #covidEmote {
    width: 464px;
    margin: 3rem auto;
  }
  #covidEmote::before {
    display: none;
  }
  #covidEmote::after {
    display: none;
  }

  #report div {
    margin: 1rem 0;
  }
}/*# sourceMappingURL=style.css.map */