@font-face {
  font-family: "LexendDeca";
  src: url("../../fonts/LexendDeca-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Inter-VariableFont";
  src: url("../../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
}
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  background: hsl(233, 47%, 7%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Inter-VariableFont";
}

#root {
  display: grid;
  color: white;
  background: hsl(244, 38%, 16%);
  border-radius: 10px;
}
#root #conteudo_main {
  grid-area: conteudo;
  padding: 10px;
}
#root #img_main {
  opacity: 0.5;
  grid-area: img;
}
#root h1 {
  text-align: center;
  margin: auto;
  margin-top: 1em;
}
#root h1 #textSublinhado {
  color: hsl(277, 64%, 61%);
}
#root #p_main {
  color: hsla(0, 0%, 100%, 0.6);
  line-height: 1.5em;
  width: 290px;
  margin: auto;
}
#root #bloco_values {
  margin: 2em auto;
  text-align: center;
}
#root #bloco_values p {
  font-size: 15px;
}
#root #bloco_values .value {
  font-weight: bolder;
  font-size: 1.5em;
  line-height: 1.5em;
}
#root #bloco_values .text {
  color: hsla(0, 0%, 100%, 0.6);
  margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
  #root {
    text-align: center;
    grid-template-areas: "img" "conteudo";
    width: 320px;
  }
  #root #img_main {
    width: 320px;
    height: 240px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  #root h1 {
    width: 260px;
  }
  #root #bloco_values {
    width: 200px;
  }
}
@media screen and (min-width: 700px) {
  #root {
    height: 372px;
    grid-template-areas: "conteudo img";
  }
  #root #conteudo_main {
    width: 450px;
  }
  #root #conteudo_main h1 {
    width: 330px;
    margin-bottom: 1em;
  }
  #root #conteudo_main #bloco_values {
    display: flex;
    justify-content: space-between;
    width: 300px;
  }
  #root #img_main {
    width: 450px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
  }
}

/*# sourceMappingURL=index.css.map */
