* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    font-size: 1.6rem;
    line-height: 1.5;
    background-color: darkslateblue;
    min-height: 100vh;
    color: whitesmoke;
    display: grid;
    place-content: center;
}
img {
    width: 80%;
    max-width: 70rem;
}
header,
form,
section,
main {
    display: flex;
    align-items: center;
    flex-direction: column;
}
form,
header {
    margin-bottom: 4rem;
}

p {
    max-width: 45rem;
    padding: 2rem;
    font-size: 2rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: darkseagreen;
    border-radius: 1rem;
}
h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 3rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

form {
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    color: black;
    width: 100%;
    max-width: 45rem;
    box-shadow: 0 1.5rem darkblue;
    label {
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }
    div {
        width: 100%;
        height: 4rem;

        input {
            width: 74%;
            height: 100%;
            text-align: center;
            border: none;
            font-size: 2rem;
            border-bottom: 2px solid darkorchid;
            &:focus {
                border: 2px solid black;
            }
        }
        button {
            width: 24%;
            border: none;
            height: 100%;
            cursor: pointer;
            background-color: darksalmon;
            border-radius: 1rem;
            font-size: 2rem;
            text-transform: capitalize;
            transition: 1s ease-in-out;
            color: white;
            &:hover {
                background-color: sandybrown;
            }
        }
    }
}
main {
    padding: 0 2rem;
}
.game-result {
    padding: 0;
    background-color: transparent;
    margin-top: 1rem;
}
