*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
}

body {
    background-color: #FCEADE;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    height: 500px;
    width: 450px;
    background-color: #fff;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
}

.container h2 {
    text-align: center;
    height: 15%;
    width: 100%;
    background-color: coral;
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 10px;
}

.container p {
    font-size: 20px;
    margin: 10px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guess {
    font-size: 50px;
    margin: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.guessField {
    border: 2px coral solid;
    outline: none;
    margin: 15px;
    width: 60%;
    padding: 8px 0;
    border-radius: 10px;
    font-size: 20px;
    background-color: rgb(245, 202, 202);
}

.submit {
    border: 2px coral solid;
    background-color: white;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: large;
    margin: 10px;
    background-color: rgb(245, 202, 202);
}