body{
    background-color: #2D328E;
    margin: 0;
    font-family: arial;
    
}
header{
    position: absolute;
    position:static;
    height: 10vh;
}
.img img{
    width: 100%;
    height: 100%;
}
#id-escola-e-turma{
    float: right;
    padding: 0 0.5vw 1vh 2vw;
    background-color: #65B3C7;
    border-radius: 0 0 0 35px;
}
#id-escola-e-turma p{
    font-size: 2vw ;   /* tamanho da letra */
    background-color: #65B3C7;
    color: #ffff;
    
}
#planeta-001{
    position: absolute;
    width: 20vw;
    padding: 45vh 0vw 0vh 0vw;
    z-index: 2;
    animation: subirDescer 3s ease-in-out infinite;
}

#planeta-002{
    position: absolute;
    width: 20vw;
    padding: 15vh 0 0 78vw;
    animation: subirDescer 4s ease-in-out infinite;
}
#dave{
    position:absolute;
    width: 15vw;
    height: 30vh;
    /*animation: subirDescer 2s ease-in-out infinite;*/
}
#balao{
    position: absolute;
    width: 60vw;
    padding: 0vh 0vw 0vh 20vw;
}
#fala{
    padding: 1vh 1vw 1vh 1vw;
    background-color: #ffff;
    box-shadow: 10px 10px #4B220C;
    font-size: 2vw;
}
#inserir-nome{
    position: absolute;
    z-index: 3;
    width: 50vw;
    padding: 52vh 20vw 0 25vw;
}
#botao{
    position: relative;
}
#btn{
    background-color: #C20029;
    border-style: none;
    width: 100%;
    height: 10vh;
    font-size: 2vw;
    color: #ffff;
    border-radius: 50px;
    box-shadow: 8px 8px #4B220C;
    
}
#nome{

    position: relative;
    padding-bottom: 2vh;
}
#nm{
    text-align: center;
    background-color: #ffff;
    border-style: none;
    width: 100%;
    height: 10vh;
    font-size: 2vw;
    color: #4B220C;
    border-radius: 50px;
    box-shadow: 8px 8px #4B220C;
}
@keyframes subirDescer {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2vh);
    }
}