@charset "UTF-8";

*{
    margin: 0px;
    padding: 0px;
}

body{
    width: 100vw;
    height: 100vh;
    background-color: #CFB294;
    font-family: arial;
    font-size: 1.5em;
    position: relative;
}

div{
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 500px;
}

h1{
    text-align: center;
    margin-top: 50px;
    color: rgb(63, 30, 30);
}

p{
    text-align: center;
    margin: 20px;
}

input{
    width: 100%;
    height: 40px;
    border: 3px solid #756553;
    border-radius: 5px;
}

button{
    display: block;
    margin: auto;
    width: 150px;
    height: 40px;
    margin-top: 10px;
    padding: 10px;
    border: 0px;
    border-radius: 5px;
    background-color: darkred;
    color: white;
    font-size: 0.6em;
    box-shadow: 2px 2px 5px black;
}

button:hover{
    color: rgb(253, 220, 220);
    cursor: pointer;
    width: 153px;
    height: 43px;
}

ul#mensagem{
    text-align: center;
    margin-top: 30px;
}

li{
    margin: auto;
    margin-top: 5px;
    padding: 3px;
    width: 300px;
    border-radius: 5px;
    border: 2px solid #756553;
    text-align: center;
    background-color: white;
}
