.proceed-overlay {
    position: absolute;

    width: 100%;
    height: 100%;

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

    background-color: rgba(0, 0, 0, 0.3);

    opacity: 1;
    transition-duration: 0.5s;
}

.proceed-overlay.hidden {
    opacity: 0;
    display: none;
}

.win-box {
    width: 400px;
    height: 150px;

    background-color: white;
    box-shadow: 4px 4px 0 2px rgba(0,0,0,0.5);

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

    padding: 10px;
    gap: 10px;
}

.win-box .title {
    font-size: 24px;
    flex-grow: 1;

    display: flex;
    align-items: center;
}

.box-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button {
    display: flex;

    align-items: center;
    justify-content: center;

    background-color: white;
    border: solid 3px black;
    color: black;

    width: 50px;
    height: 50px;

    user-select: none;
    text-decoration: none !important;

    transition-duration: 0.3s;
}

.button.click:focus {
    background-color: black;
    color: white;
}

.button .material-icons {
    font-size: 48px;
}