body {
    background-color: #f1f1f1;
    font-family: "Arial", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
   
    
}
.container {
    margin: 0px;
    padding: 44px;
    
    
}
.container h1 {
    margin: 20px;
    border-radius: 25px;
    font-size: 2rem;
    text-align: center;
    padding: 2px;
font-family: 'Courier New', Courier, monospace;
    /* width: 100%; */
    border: 2px solid red;
    text-decoration: underline;
    box-sizing: border-box;
   

}

h1:hover {
    color: #ff041f;
}

p {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #00e4d9;;
}

.buttons {
    display: flex;
    justify-content: center;
}

button {
    border: none;
    font-size: 3rem;
    margin: 0 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

button:hover {
    opacity: 0.7;
}

#rock {
    background-color: #ff0000;
}

#paper {
    
    background-color: #2196f3;
}

#scissors {
    padding: 20px;
    background-color: #08450a;
}

#user-score {
    color: #2196f3;
}

#computer-score {
    color: #ff0000;
}

.btn4:hover {
    background: transparent;
    color: black;
}

.child{ 

    background: linear-gradient(45deg, blue, red);
    width: 50%;
    height: 45vh;
    padding: 20px;
       
    
}
.parent{
display: flex;
justify-content: center;
align-items: center;

}
