body {
    background-color: white;
    text-align: center;
    color: black;
    font-family: Verdana;
}

h1 {
    display: table;
    font-size: 27px;
    padding: 5px;
    margin: 0px auto 0px auto;
}

h2 {
    display: table;
    font-size: 17px;
    padding: 5px;
    margin: 0px auto 0px auto;
}

fieldset {
    display: table;
    padding: 5px;
    margin: 0px auto 0px auto;
    background-color: #FFEBCD;
}

legend {
    display: table;
    padding: 5px;
    margin: 0px auto 0px auto;
}

footer {
    display: table;
    padding: 5px;
    margin: 0px auto 0px auto;
}


p {
    display: table;
    font-size: 14px;
    padding: 5px;
    margin: 0px auto 0px auto;
}

.box {
    z-index: 1;
    padding: 3px 3px;
    background-color: #FFEBCD;
    border: 1px solid #000;
    display: inline-block;
    justify-content: flex-start;
    align-content: center;
}

.topnav {
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    list-style-type: none;
}

/* Style the links inside the navigation bar */
.topnav a {
    z-index: 1;
    width: 150px;
    background-color: #FFEBCD;
    float: left;
    color: black;
    text-align: center;
    padding: 10px 10px;
    border: 1px solid #000;
    margin-right: 2px;
    margin-left: 2px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    z-index: 1;
    background-color: #FFEBCD;
    border-style: dotted;
}

.background {
    z-index: -1;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    /* position the top  edge of the element at the middle of the parent */
    left: 50%;
    /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, -50%);
    width: 1120px;
    height: 900px;
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: #c2ce9a;
    opacity: 0.8;
    border: 1px solid black;
}

.link-style {
    text-decoration: none;
    font-size: 12px;
    color: #A9B486;
}

.home-link {
    text-decoration: none;
    font-size: 17px;
    color: black;
}

.home-link:hover {
    z-index: 1;
    color: #FFEBCD;
}

.areas {
    display: grid;
    grid-template-columns: 0.2fr 2.6fr 0.2fr;
    grid-template-rows: 1fr 1.1fr;
    gap: 0px 0px;

    grid-template-areas:
        ". gallery ."
        ". gallery .";
}

.gallery {
    grid-area: gallery;
}