body{
    background-color: aqua;
}


/* HEADER */
#header{
    padding: 20px 0;
    width: 100%;
    background-color: darkorchid;
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
}

#title{
    font-size: clamp(16px, 4vw, 32px);
}


/* MAIN AREA */
#main{
    width: 100%;
}

#choice{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 20px 0;
}


/* GAME ELEMENT BUTTONS */
.element{
    width: 25vw;
    height: 25vw;
    max-width: 150px;
    max-height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

.border{
    border: 2px solid transparent;
}
.border:hover{  
     border: 4px solid black;
}


/* IMAGES */
#Stone{
    background-image: url(Image/R.jpeg);
}
#Paper{
    background-image: url(Image/p.jpeg);
}
#Scissors{
    background-image: url(Image/S.jpeg);
}


/* SCOREBOARD */
#scorebord{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px 0;
}

#u, #c{
    font-size: clamp(20px, 6vw, 40px);
}
#u-, #c-{
    font-size: clamp(16px, 5vw, 30px);
}


/* MESSAGE BOX */
#meg {
    position: relative;
    margin: 20px auto;
    font-size: clamp(18px, 6vw, 40px);
    background: yellow;
    text-align: center;
    border-radius: 10px;
    padding: 10px 20px;
    width: fit-content;
}


/* MOBILE */
@media (max-width:480px) {

    .element{
        width: 28vw;
        height: 28vw;
        max-width: 110px;
        max-height: 110px;
    }

    #scorebord{
        padding-top: 10px;
        gap: 20px;
    }
}
