@import url('https://fonts.googleapis.com/css2?family=Sono:wght@500&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

.msgBox{
    margin: 0 auto;
    width: 400px;
    height: 60px;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    font-family: "Sono", 'Times New Roman', Times, serif;
    font-size: 26px;
}

.error{
    right: 100px;
    position: center;
    height: auto;
    border: solid rgb(255, 1, 1) thin;
    background-color: rgb(255, 151, 151);
}

.victory{
    height: auto;
    border: solid rgb(20, 7, 97) thin;
    background-color: rgb(144, 194, 151);

    padding: 15px;
    border-radius: 15px;
    margin: 10px;

    font-family: "Sono", 'Times New Roman', Times, serif;
    font-size: 18px;
}

.play{
    height: auto;
    border: solid rgb(20, 7, 97) thin;
    background-color: rgb(144, 194, 151);

    padding: 15px;
    border-radius: 15px;

    font-family: "Sono", 'Times New Roman', Times, serif;
    font-size: 18px;
}

.guess-again{
    top: 300px;
    position: absolute;
    height: 22px;
    border: solid rgb(46, 81, 121) thin;
    background-color: rgb(192, 207, 58);

    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    font-family: "Sono", 'Times New Roman', Times, serif;
    font-size: 18px;
}


.form-holder {
    width: 400px;
    height: 340px;
    background-color: #9dbcc4;
    padding: 20px;
    border: solid goldenrod thin;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.input-holder {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;

    font-family: "Sono", 'Times New Roman', Times, serif;
}

input {
    margin-top: 10px;
    height: 40px;
    width: 390px;
    align-self: center;

    font-family: "Sono", 'Times New Roman', Times, serif;
}

button {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 250px;
    width: 100%;
    align-self: center;
    border-radius: 30%;
    background-color: gold;
    border: thin solid darkblue;

    font-family: "Sono", 'Times New Roman', Times, serif;
    font-size: 32px;
}

button:hover {
    background-color: rgb(21, 136, 31);
    
}