*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right bottom,rgb(0, 31, 131),rgb(192, 0, 189));
}
.wrapper{
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5em;
    border: 3px solid   rgb(201, 201, 201);
    border-radius: 2em;
    padding: 5em 3em;
}
h1{
    font-size: 3em;
}
h2{
    color: rgb(109, 153, 255);
    font-size: 2em;
}
h3{
    color: rgb(0, 31, 131);
    font-size: 2em;
}
#choices{
    display: flex;
    gap: 1em;
}
#choices button{
    padding: 0.5em 1.2em;
    border-radius: 0.5em;
    font-size: 3em;
    border: 3px solid transparent;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
#choice button:hover{
    background-color: white;
    border: 3px solid rgb(109, 153, 255);
    transform: scale(1.05);
}
#player-score,
#computer-score{
    font-size: 1.8em;
    font-weight: 600;
}
#resultDisplay{
    font-size: 3em;
    border: 3px solid rgb(109, 153, 255);
    border-radius: 0.5em;
    padding: 10px 50px;
}
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 50px;
    gap: 10px;
    background-color: linear-gradient(to bottom, rgb(0, 31, 131), rgb(109, 153, 255));;
    box-shadow: inset 15px 15px 20px rgba(0, 0, 0, 0.1), inset -15px -15px 20px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
    color: white;
    font-weight: bold;
}

.footer p {
    margin: 0;
}

.footer img {
    width: 30px;
    height: 30px;
}

.footer a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer a:hover {
    color: rgb(109, 153, 255);
}
