*{
    box-sizing: border-box;
    user-select: none;
}

body{
    width: 100vw;
    height: 100vh;
    background-color: #8FCB9B;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
}

#headerBox{
    
    font-weight: bold;
    color: white;
    font-size: 4em;
    width: 100%;
    height: 100px;
    text-align: center;
    background-color: #5B9279;
    padding: 15px;
}
h1{
    color: white;
    width: 80%;
    border-radius: 25px;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #5B9279;
    font-size: 1.5em;
    margin: 5px;
}

#predictionImg{
    width: auto;
    height: 60%;
    border: solid 5px #116e4e;
    border-radius: 10px;
}

#predictionContainer{
    width: 300px;
    height: 300px;
    border: solid 10px #116e4e;
    border-radius: 15px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: hsl(0, 0%, 85%);
    margin: 0px;
    box-shadow: 0px 15px 25px hsl(73, 83%, 86%);
}

#predictionText{
    font-size: 5em;
}

#predictionContainer *{
    padding: 0px;
    margin: 0px;
}

#canvas{
    background-color: white;
    border: solid 5px #116e4e;
    border-radius: 20px;
    width: 200px;
    height: 200px;
}

#canvasContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
}

#btnContainer *{
    font-size: 1.5em;
    border-radius: 10px;
    margin: 5px;
    width: 150px;
    text-align: center;
    background-color: #116e4e;
    color: white;
    border: 0px;
    padding: 5px;
}

#btnContainer *:hover{
    background-color: #147755;
    cursor: pointer;
}

#btnContainer *:active{
    background-color: #105f43;
}

#btnContainer{
    background-color: hsla(161, 64%, 20%, 0.603);
    padding: 5px;
    border-radius: 20px;
}