* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}

.head {
    display: flex;

    width: 100%;
    height: 50px;
    color: rgb(253, 255, 255);
    background-color: rgb(79, 79, 210);
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 600;

}

.game {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.zone {
  display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 20px; 

}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

#rock {
    padding: 0px 20px;
}

#paper {
    padding: 0px 20px;
}

#scissor {
    padding: 0px 20px;
}

.points {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 10px;
}

.you {
    padding-right: 30px;
    font-size: 40px;
}

.yourpoints {
    padding-left: 25px;
}

.comp {
    padding-left: 30px;
    font-size: 40px;
}

.comppoints {
    padding-left: 35px;
}

.information {
    border: 2px solid black;
    width: 30vw;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: green;
    color: white;
    font-size: 20px;
    font-weight: bold;

}

@media screen and (max-width: 480px) {
    @media screen and (max-width: 480px) {
 
    .zone {
        flex-wrap: wrap;
        justify-content: center;
    }

   
    .zone div img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50%; 
    }

   
    #rock, #paper, #scissor {
        padding: 10px;
    }


    .you, .comp {
        font-size: 25px;
        padding: 10px;
    }

    .yourpoints, .comppoints {
        padding-left: 0;
        text-align: center;
    }

   
    .information {
        width: 80vw;
        font-size: 16px;
    }
}



}

@media screen and (min-width: 481px) and (max-width: 800px) {
    .zone div img {
        width: 120px; 
        height: auto;
    }
    
    .information {
        width: 50vw; 
    }

    .you, .comp {
        font-size: 32px;
    }
}