*{
    margin: 0%;
    padding: 0%;
}

html,body{
    width: 100%;
    height: 100%;
}


#main{
    width: 100%;
    height: 100%;

    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: rgb(230, 225, 216);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}


#header{
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-items: center;
    justify-content: center;
    animation: zoom 6s infinite ease-in-out;
    font-size: x-large;
}

@keyframes zoom {
    
    0%{
      transform: scale(1);
    }

    50%{
      transform: scale(1.13);
    }

    100%{
      transform: scale(1);
    }
}

#header img{
 
    width: 60px;
}


#image{
    height: 30%;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;    
}

.image{
    height: 100%;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px  solid black;
}

.image img{
    width: 140px;
}

#rock{
    background-color: rgb(154, 150, 150);
}

#paper{
    background-color: rgb(216, 183, 121);
}

#scissor{
    background-color: rgb(231, 197, 202);
}

.image:hover{
    border-width: 8px;
    border-color: black;
    cursor:pointer;
}



#points{
    height: 35%;
    width: 60%;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.point{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    height: 30%;
    width: 40%;
    border: 2px solid black;
    border-radius: 20px;
    font-size: larger;
}

.point h1{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


#points h1 img{
    width: 40px;
}


#user{
    background-color: rgb(67, 212, 67);
}


#computer{
    background-color: rgb(237, 12, 12);
}
#result{
    height: 10%;
    width: 40%;
    border: 2px solid black;
    border-radius: 20px;
    background-color: rgb(98, 207, 249);

    display: flex;
    align-items: center;
    justify-content: center;
    
    margin-bottom: 40px;
    gap: 20px;
}

#result img{
    width: 60px;
}


