*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background:  #325288;
    font-family: 'Dongle', sans-serif;
}
header{
    height: 15vh;
    width: 100%;
    color: #325288;
    background:  #FAEEE7;
    font-size: 2.5rem;
    line-height: 15vh;
    text-transform: uppercase;
    letter-spacing: 15px;
    text-align: center;
    text-shadow: 0 30px 5px rgba(0,0,0,0.1);
}
section{
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gameArea{
    width: 50%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FAEEE7;
    border-radius: 2%;
    box-shadow: 0 8px 6px -6px black;
}
.msg{
    color: #325288;
    font-size: 2rem;
}
input{
    background: #325288;
    height: 5vh;
    width: 50%;
    border: none;
    border-radius: 5px;
    text-align: center;
    color: #FAEEE7;
    margin: 30px 0;
    font-family: 'Dongle', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
}
input:focus{
    outline: none;
}
.hidden{
    visibility: hidden;
} 
.btn{
    background: #325288;
    color: #FAEEE7;
    border: none;
    height: 5vh;
    width: 30%;
    font-size: 1.5rem;
    font-family: 'Dongle', sans-serif;
    text-transform: uppercase;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.65,-0.25,0.25,1.95);
}
.btn:hover{
    letter-spacing: 0.125rem;
    word-spacing: 0.2rem;
    width: 35%;
}