*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body{
    background-color: rgb(137, 143, 173);
    text-align: center;
    font-family: 'Roboto', sans-serif;
    background-size: cover;
    height: 100%;
    overflow: hidden;
}



h1{
    font-size: 20px;
    letter-spacing: 1rem;
    margin: 20px;
    margin-top: 50px;
}

main{
    height: 300px;
    width: 300px;
    background-color: rgb(126, 79, 165);
    margin: auto;
    margin-top: 175px;
    border-radius: 10rem;
    padding-top: 50px;
    opacity: 85%;
    border: solid black 8px;
}


.message{
    position: absolute;
    background-color: rgb(114, 114, 233);
    height: 95px;
    width: 300px;
    border-radius: 4rem;
    border: solid rgb(117, 90, 151) 5px;
    margin-top: 150px;
    opacity: 90%;
}



#future{
    font-size: 17px;
    font-weight: 500;
    margin: 20px;
    color: rgb(187, 250, 15);
}


#number{
    width: 60px;
    height: 30px;
    text-align: center;
    border: none;
    border-radius: 3rem;
    border: solid rgb(117, 90, 151) 5px;
}

#submit-button{
    border: none;
    height: 25px;
    width: 60px;
    border-radius: 3rem;
    border: solid black 2px;
}

#submit-button:hover{
    background-color: black;
    color: white;

}

