*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

.body{
    background-color: #03112b;
    color: #ffce08;
}

.banner{
    width: 100vw;
}

.form{
    margin: 3rem;
    font-size: 18px;
}

.label{
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 3rem;

    @media all and (min-width: 1200px){
        font-size: 24px;
    }
}

.button{
    margin-top: 2rem;
    background-color: lightblue;
    color: #03112b;
    font-size: 18px;
    font-weight: bold;
    padding:5px;
    border-radius:5px;

    @media all and (min-width:468px){
        width: 120px;
    }

    @media all and (min-width: 1200px){
        font-size: 24px;
    }
}

.clue, .try{
    height: 90px;
    margin:3rem;
    font-size: 18px;
    font-weight: bold;
    border: 3px solid grey;
    border-radius: 15px;
    padding: 25px;
    padding-left: 20px;

    @media all and (min-width:768px){
        width:70vw;
    }

    @media all and (min-width: 1200px){
        font-size: 24px;
        height: 80px;
        
    }
}

.inputNumber{
    height: 40px;
    margin-top: 1em;
    text-align: center;
    border: 2px solid #ffce08;
    border-radius: 15px;

    @media all and (min-width:1200px){
        width: 30vw;
        height: 60px;
        font-size: 24px;
    }
}