@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:wght@400;600&display=swap');

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

html,
body {
    height: 100vh !important;
    background: url(https://img.elo7.com.br/product/600x380/23F8AA7/papel-de-parede-dentista-60cm-x-2-50m-casa.jpg);
    font-family: 'Montserrat', sans-serif;
}

.container {
    display: flex; 
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.conteudo {
    margin: 2% 2%;
    background-color: #71C3FC;	
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

}
.conteudo h1 {
    color: #086697;
    text-align: center;
}

.conteudo input,
.conteudo select {
    width: 200px;
    height: 20px;   
}

.conteudo button {
    cursor: pointer;
    background-color: #0F14D0;
    border: none;
    width: 80px;
    height: 40px;
    border-radius: 10px;
    color: white;
}

#resultado {
    background-color: #6BB9FB;
    border-radius: 10px;
    animation: aparecer 2s
    
}

@keyframes aparecer {
      0% { opacity: 0; } 
      100% { opacity: 1; } 
}

