#canvas {
    background-color: darkgrey;
    background-image: url(images/celtic.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#allContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#ui {
    font-size: large;
    text-align: center;
}

#popup {
    position: absolute;
    background-color: rgba(30, 30, 30, 0.85);
    color: beige;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#popupContent {
    text-align: center;
    font-size: x-large;
    /* padding-bottom: 150px; */
}

#popupText {
    text-align: justify;
    width: 50%;
    padding: 24px;
    margin: auto;
}

#popupButton {
    background-color: rgb(152, 152, 142);
    color: rgba(30, 30, 30, 0.95);
    padding: 15px 150px 15px 150px;
    font-size: x-large;
    border: none;
    cursor: pointer;
}

#popupButton:hover {
    background-color: beige;
}

#popupImage {
    max-width: 600px;
    max-height: 300px;
    /* border-bottom: 1px solid black; */
    /* background-color: rgba(30, 30, 30, 1); */
}

.hidden {
    display: none !important;
}