@import url('https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.quantico-regular {
  font-family: "Quantico", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.quantico-bold {
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.quantico-regular-italic {
  font-family: "Quantico", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.quantico-bold-italic {
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  font-style: italic;
}


body{
  background: black;
  color: white;
  font-size: 16px;
}

main{
  width: 100vw;
}
.counter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2em;
}

.counter h1,
.counter h3 {
  margin: 0; 
}

#death-count{
  text-align: center;
  font-size: 14em;
  line-height: 0.7;
  color: red;
  margin-bottom: 0.1em;
}

.counter h3{
  font-size: 1.5em;
}

.human-card{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin-top: 100px;
  padding: 0.5em;
}
.human-photo {
  height: 200px;
  width: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.human-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
}
.human-card .human-info{
  display: flex;
  flex-direction: column;
  padding-left: 1em;
}

.human-name-age{
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 0.2em;
}
.human-cause{
  margin-bottom: 1em;
}
.human-about{
  margin-bottom: 1em;
}
.human-source{
  color: white;
  font-size: 0.8em;
}

@media (max-width: 650px) {
  body{
    font-size: 14px;
  }
  #death-count{
    font-size: 10em;
  }
  .counter h3{
    font-size: 1.2em;
  }
  .human-card{
    margin-top: 50 px;
    flex-direction: column;
  }
}


@media (max-width: 450px) {
  #death-count{
    font-size: 6em;
  }
  .counter h3{
    font-size: 1em;
    text-align: center;
  }
  .human-card{
    flex-direction: column;
  }
  .human-name-age{
    font-size: 1.3em;
  }
}
