*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    height: 100vh;
    background: #E9BF8B;
}
#button{
    text-transform: uppercase;
    font-size: 18px;
    padding: 10px 15px;
    color: #2C2D2A;
    background: transparent;
    border: 1px solid #2C2D2A;
    border-radius: 3px;
    transition: .2s;
    cursor:pointer;
}
#button:hover{
    background:#2C2D2A;
    color: #E9BF8B;
    box-shadow: 1px 1px 1px #2C2D2A;
}
#type{
    color: #2C2D2A;
    font-size: 24px;
    margin-top: 20px;
    transition: .2s;
}
#type:hover{
    background: #2C2D2A;
    color: #E9BF8B;
}