html,body{
    height: 100%;
    margin: 0;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
}
body{
  background: linear-gradient(to top, #94BBE9 0%, #EEAECA 100%);
  background-attachment: fixed;
}
h1{
    text-align: center;
    color: #223035;
    text-shadow: #FFF 0px 0px 5px, #FFF 0px 0px 10px, #FFF 0px 0px 15px, #FF2D95 0px 0px 20px, #FF2D95 0px 0px 30px, #FF2D95 0px 0px 40px, #FF2D95 0px 0px 50px, #FF2D95 0px 0px 75px;
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 3rem;
}
h3{
    text-align: center;
    color: #223035;
    font-size: 1.5rem;
    margin-bottom: 90px;
}
.buttons{
    justify-content: center;
    gap: 50px;
    display: flex;
    margin-bottom: 50px;

}
button{
    padding: 20px;
    font-size: 1rem;
    border-radius: 4px;
    background-color: thistle;
    font-weight: 550;
    cursor: pointer;
}
button:hover{
    background-color: rgb(203, 153, 203);
}
#result{
    margin-left: 50px;
    font-size: 1.3rem;
    color: #223035;
    text-shadow: 2px 1px 0px #d2cdcd;
    text-align: center;
    margin-bottom: 50px;
}
.photo_container{
    justify-content: center;
    gap: 200px;
    display: flex;
    margin-bottom: 80px;

}
.photo_container img{
    cursor: pointer;
    height: auto;
}
.selected {
    border: 4px solid #c07c9e;
    border-radius: 30%;
    box-shadow: 0px 0px 15px #cc7da5;
}
#score{
    text-align: center;
    font-size: 2rem;
    color: #FF2D95;
    text-shadow: 2px 1px 0px #d2cdcd;
    margin-bottom: 250px;
}