*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url('./Assets/abstract-neon-lights-background-design/4249454.jpg');
    background-size: cover;  
    background-position: center; 
    background-repeat: no-repeat;  
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: -1; 
}

h1{
    font-size: 28px;
    text-align: center;
    margin: 20px 0px;
    color: white;
    font-family:'Courier New', Courier, monospace;
}
.container{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.row{
    display: flex;
    justify-content: center;
    align-items: center;
}
.col{
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    width: 100px;
    height: 100px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: bold;
    background-color: lightgray;

}
button {
    margin-top: 20px;
    width: 120px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border: none;
    background: linear-gradient(45deg, #ff6a00, #ee0979);
    color: white;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background: linear-gradient(45deg, #ee0979, #ff6a00);
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 106, 0, 0.6);
}


#winner {
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    height: 120px;
    width: 200px;
    border: 1px solid black;
    z-index: -1;
    font-size: 1.5rem;
    color: rgb(0, 0, 0);
    background-image: linear-gradient(90deg, #A100FFFF 0%, #71C4FFFF 100%);
}
#winner img{
    width: 60px;
    height: 60px;
    
}