body {
    font-family: Arial, sans-serif;
    background-image: url("/images/SH\ 1.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    z-index: -1;
}
.choice {
    color: red;
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    position: fixed;
    right: 0;
    top: 0;
    padding: 10px 10px 10px; 
    font-size: 45px;
    font-style: normal;
    margin-right: 55px;
    word-spacing: 15px;
    margin-top: -11;
}
.choice li{
    display: inline;
}
.choice li a{
    color: #fff;
    text-decoration: none;
    
}
.choice li a:hover{
    color: #ff0000;
}


/* Add media query for mobile screens */
@media (max-width: 768px) {
    body {
        background-size: contain;
    }

    .choice {
        display: block;
        text-align: center;
        position: static;
        margin: 0;
        padding: 10px 0;
    }

    .choice li {
        display: block;
        margin-bottom: 10px;
    }
}
