@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Sarala:wght@400;700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {

  font-size: 100%;
  background: linear-gradient(68.15deg, #004D40 16.62%, #4DB6AC 85.61%);
}

.main {
  border-top: 0.7px solid #212121;
}

.cabecalho {

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 16px;

}

.titulo {

  color: #212121;
  font-family: 'Roboto', cursive;
  font-size: 49px;
  font-weight: 700;
}

.conteudo{

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin-top: 49px;
}

.box {
  color: #212121;
  font-family: 'Roboto', cursive;
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  margin: 0 10px 0 10px;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  background-color: white;
  border-radius: 0.5em;
  width: 30vw;
  height: 10rem;
}

.btn {

  font-family: 'Sarala', sans-serif;
  border: 0;
  color: #FAFAFA;
  font-weight: bold;
  background-color: #00838F;
  padding: 10px;
  margin-top: 10px;
  border-radius: 0.5em;
}

.btn:hover {
  background-color: #00ACC1;
}

.text-input {
  border-radius: 0.5em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: block;
  padding: 0.5em;
  width: 100%;
  height: 50px;
}
