* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, #2191fb, #1b75e9);
    display: flex;
    justify-content: center;
    position: relative;
}

.game-container {
    margin: 100px;
}

.game-container h1 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.game {
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.game button {
    width: 160px;
    height: 160px;
    font-size: 58px;
    background: #B2ECE1;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
}



.reset {
    padding: 8px 20px;
    font-size: 18px;
    display: block;
    background:  #BA274A;
    color: #fff;
    border: none;
    outline: none;
    margin: 20px auto;
    border-radius: 4px;
    cursor: pointer;
}

.win-container {
    position: absolute;
    top: 0;
    left: 50%;
    margin: auto;
    width: 400px;
    height: 200px;
    background: #1b75e9;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    text-align: center;
    padding: 10px;
    color: #fff;
    transform: translate(-50%,-50%) scale(0);
    /* transform: scale(0); */
    transition: 0.5s;
}

.win-container.slide-down {
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
}


.start-btn {
    padding: 10px 20px;
    margin-top: 30px;
    background: #BA274A;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    border: 0;
    outline: 0;
    cursor: pointer;
}
