@font-face {
  font-family: Poppins;
  src: url(Fontes/Poppins-Regular.ttf);
}

*
{
  margin: 0;
  padding: 0;
  font-family: Poppins;
}

body
{
  background: #e7e8ee;
}

.layout
{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
  width: 100vw;
}

.box p
{
  padding: 0;
  margin-bottom: 15px;
  font-weight: bold;
  color: #222;
  font-size: 16px;
}

.layout .box
{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 220px;
  padding: 10px;
  background: #fff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 25px #BEC3FF;
  height: 200px;
}

.box .visor
{
  height: 60px;
  width: 60px;
  -webkit-border-radius: 60%;
  -moz-border-radius: 60%;
  border-radius: 60%;
  border: 4px #ddd solid;
  background: #039be5;
  margin-bottom: 20px;
 box-shadow: 0 2px 15px #ddd;
}

.box .flex
{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.box .valor
{
  background: #fff;
  padding: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #aaa;
}

.box button
{
  background: #fff;
  color: var(--tema);
  width: 100px;
  border: none;
  font-size: 16px;
  height: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px var(--tema) solid;
  -webkit-transition: 150ms linear;
  -moz-transition: 150ms linear;
  -ms-transition: 150ms linear;
  -o-transition: 150ms linear;
  transition: 150ms linear;
}
