*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
}
.container{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
#title{
    font-size: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800;
    text-align: center;
  
    padding: 30px 0;
    border-radius: 10px 8px;
    
}
h1 span{
    color: aqua;
    animation: texto 1s 0.5s infinite ease;
}
@keyframes texto {
    10%{
        color: black;
    }
    40%{
        color: green;
    }
    60%{
        color: maroon;
    }
    100%{
        color: orange;
    }
    
}
.images{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 5%;
}
.images img{
    width: 150px;
    height: 100px;
    border-radius: 50px;
   
    cursor: pointer;
}
.images img:hover{
    border: 4px solid rgb(77, 225, 18);
    transition: all ease 0.7s;
}
.messages-score{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13rem;
    margin-top: 3%;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}
.winner{
    font-size: 26px;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: flex;justify-content: center;
    margin-top: 5%;
   
}
.winner span{
    border: 2px solid gray;
    background-color: rgba(14, 199, 255, 0.543);
    font-weight: 600;
    border-radius: 20px;
    padding: 10px 50px;
    width: auto;
    display: none;
}
.you{
    border: 2px solid rgb(4, 61, 15);
    background-color: rgba(30, 222, 12, 0.543);
    padding:10px 25px ;
    border-radius: 20px;
    width: auto;
}
.comp{
    border: 2px solid rgb(131, 3, 3);
    background-color: rgba(255, 1, 1, 0.543);
    font-weight: 600;
    border-radius: 20px;
    padding: 10px 25px;
    width: auto;
}
.reset{
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: none;
    background-color: #00000081;
    font-size: 18px;
}
.reset:hover{
   background-color: #000;
   cursor: pointer;
   transition: all 0.5s ease;
   color: white;
   
}
.btn{
    margin-top: 4%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
@media screen and (max-width:450px) {
    #title{
        font-size: 25px;
        margin-top: 50px;
    }
    .images img{
        width: 80px;
        height: 80px;
        margin-top: 40px;
    }
    .messages-score{
        font-size: 18px;

    }
    .you{
        font-size: 15px;
       
        
    }
    .comp{
        font-size: 15px;
    }
    .messages-score{
        gap: 10%;
        margin-top: 50px;
    }
    .winner span{
        padding: 5px 50px;
        font-weight: 400;
    }
    .reset{
        padding: 7px;
    }
    .btn{
        margin-top: 40px;
    }
    .container{
        width: 100vmin;
        height: 100vh;
        margin-top: 40px;
    }
}