* {
    color: #4d416d;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

body, h1, h2, h3, h4, section, div {
    background-color: #d3e7ff;
}

body {
    padding: 10vh;
    margin: 4vh;
    border: 2px solid d3e7ff;
}

h1, h2, h3 {
    margin: 5vh;
}

button {
    color: white;
    background-color:#90d3e4;
}

button:hover{
    background-color: #71a4b1
}

#guess {
    border: none;
    padding: 4px;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    box-shadow: 10px 6px 5px#88a0c3;
    position: relative;
    left: 10px;
}

#guess:focus {
    border: none;
    background-color: lightgray;
}

section {
    margin: 5vh; 
}

#guessBtn {
    background-color: #5db4aa;
    border: none;
    border-radius: 50%;
    height: 75px;
    width: 75px;
    box-shadow: 10px 6px 5px #88a0c3;
    position: relative;
    left: -10px;
}

#guessBtn:hover{
    background-color: #478780;
}

#hintBtn, #resetBtn {
    box-shadow: 2px 5px 5px #88a0c3;
    width: 100px;
    border: none;
    padding: 5px;
    border-radius: 5%;
    margin: 5vh;
}

h4 {
    border: 5px dotted white;
    color: white;
    box-shadow: 2px 5px 5px #88a0c3;
    width: 60px;
    height: 40px;
    text-align: center;
    padding-top: 20px;
}

div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
}

#guessBtn:disabled{
    background-color: #478780;
}