:root {
    --image-size: 200px
}

body {
    margin-left: 20%;
    background-color: black;
    color: white;
}

#welcome {
    font-size: large;
    font-weight: bold;
}

#calendar {
    background-color: #000033;
    display: flex;
    flex-wrap: wrap;
    width: calc(6 * var(--image-size));
}

.doorItem {
    width: var(--image-size);
    height: var(--image-size);
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/tree.svg) space;
}

.doorItem img {
    width: 100%;
}

/* Centered text */
.doorItem p {
    color: white;
    position: relative;
    font-weight: bold;
    font-size: xx-large;
}

.doorItem p:hover {
    cursor: pointer;
}


/* The Modal (background) */
#day {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (image) */
#dayImage {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#dayText {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: left;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    color: white;
    font-size: larger;
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

  #copyright {
    font-size: 14px;
  }
