body{
    font-family: sans-serif;
    
    background-image: linear-gradient(to right, rgb(21, 22, 22), rgb(119, 121, 121));
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}
.sessao{
    position: static;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 500px;
    background-image: linear-gradient(to right, rgb(119, 121, 121), rgb(87, 88, 88));
    border-radius: 15px;
    border: 1px solid #313131;
}

h1{
    font-size: 24px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(236, 164, 69);
}
.nome{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.altura{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.peso{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
input{
    margin-top: 8px;
    width: 200px;
    height:20px ;
    cursor: pointer;
    
}
.resultado{
    margin-top: 25px;
    background-color: black;
    width: 80%;
    height: 150px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 15px;
}
button{
    width: 150px;
    height: 38px;
    border-radius: 15px;
    border: 0px solid;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    cursor: pointer;
}
button:hover{
    background-color: rgb(165, 235, 235);
    transform: scale(1.15);
    transition: all 0.5s ease-in-out;
}
label{
    
    color: rgb(236, 164, 69);
}
.check{
width: 40%;

color: rgb(236, 164, 69);
}
.checkbox{
    margin-bottom: 15px;
}
.vermais {
    font-size: 15px;
    
}
.info{
    position: fixed;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 300px;
    height: 390px;
    top: 20%;
    left: 70%;
    border-radius: 15px;
    background-color: black; 
    align-items: center;
    opacity: 0;
    
    transition: opacity  1.5s ease-in-out;
}
.insideinfo{
    display: flex;
    width: 90%;
    flex-direction: column;  
    justify-content: space-around;  
    height: 100%;
}
.hide{
    display: none;
}
.atividade{
    color: white;
    font-size: 15px;
}
.info.visivel {
    opacity: 1;
  }