#initialPage {
    background-image: url(images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-position: center top;
    background-attachment: fixed;
}

#mainPage {
    background-image: url(images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-position: center bottom;
    background-attachment: fixed;
}

.open {
    cursor: pointer;
    border-radius: 3px;
}

#pop-up1, #pop-up2{
    display: none;
}

.overlay {
    display: none;
}

#pop-up1:checked + .overlay, #pop-up2:checked + .overlay {
    display: block;
    z-index: 9999;
    position: fixed;
}

.window {
    width: 90vw;
    max-width: 500px;
    height: 500px;
    background-color: #ffffff;
    border: 5px solid gray;
    border-radius: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5rem;
}

.window2 {
    width: 90vw;
    max-width: 900px;
    height: 500px;
    background-color: #ffffff;
    border: 5px solid gray;
    border-radius: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5rem;
}

.close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 35px;
}


#mainPage .title {
    font-size: 5rem;
    background-color: rgba(67, 65, 65);
    text-align: center;
}

.info {
    color: white;
    background: black;
    padding-left: 5px;
    margin-bottom: 0;
}

.info-main {
    color: white;
    background: rgb(65, 64, 64);
    padding-left: 5px;
    margin-top: 0;
}

canvas {
    border: 5px solid black;
    border-radius: 5px;
}

#gameOver {
    color: white;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

.color {
    color: rgb(81, 128, 53);
}