body{
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #e0f0ff;
    font-family: Helvetica;
}

h1{
    text-align: center;
    color: #0056b3;
    font-size: 50px;
    font-style: italic;
    text-decoration:underline;
}

.container{
    background-color: #b5d1f3;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    max-width: 500px;
    margin: 100px auto;
    gap: 20px;
    padding: 15px;
    border-color: #3399ff;
    border-width: 3px;
    border-style: solid;
}

.item button{
    padding: 30px;
    border-radius: 80px;
    background-color: #0056b3;
    border-style: solid;
    border-width: 5px;
    border-color: #0073ff;
}

.item button img{
    height: 100%;
    width: 100%;
    max-width: 100px;
    max-height: 100px;
}

.item button:hover{

    background-color: rgba(0, 86, 179, 0.7);
    border-color: rgba(51, 153, 255, 0.7);
    color: white;
    cursor: pointer;
}

.result{
    border: #3399ff solid;
    background-color: #b5d1f3;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 15px;

}
.result h1{
    font-style: normal;
    text-decoration: none;
    margin-top: 0;
    color: #0056b3;
}

.choise {
    margin: 0 auto;
    border: #3399ff solid;
    padding: 8px;
    background-color:#87b4e4;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    max-width: 300px;
}

.result .choise img{
    padding: 15px;
    height: 100%;
    width: 100%;
    max-width: 30px;
    max-height: 30px;
}

.result .choise h3{
    color: #0056b3;
}