body {
    background-color: rgb(178,236,152);
    font-family: Verdana;
}

.vert-flex-container {
    display: flex;
    flex-direction: column;
}

.flex-container {
    display: flex;
    gap: 10px;
}

.top-grid-container {
    display: grid;
    grid-template-rows: 10% 80% 50px;
    gap: 7px
}

#header {
    grid-area: 1;
}

#body {
    grid-area: 2;
}

.body-grid-container {
    display: grid;
    grid-template-columns: 155px auto 155px;
    gap: 10px
}

#left-sidebar {
    grid-area: 1/1/2/2;
}

#main-content {
    grid-area: 1/2/2/3;
}

#right-sidebar {
    grid-area: 1/3/2/4;
}

.image-with-border {
    border:5px solid rgb(152,178,236);
}

.sidebar {
    display: flex;
    flex-shrink: 0;
    width: auto;
    height: 86rem;
    margin-top: 10px;
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: black;
}

.content-grid-container {
    display: inline-grid;
    grid-template: 30% 30% 30% 10% / 25% 25% 25% 25%
}

#blog {
    grid-area: 1/1/3/3;
}

#photo-gallery {
    grid-area: 1/3/4/5;
}

.content-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    color: rgba(0, 0, 0, 1);
    text-align: center;
    border-style: solid;
    border-radius: 10px;
    background-color: rgba(236,152,178, 0.8);
}

#listicle {
    grid-area: 3/1/4/3;
}

.listicle {
    border-style: solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    background-color: rgba(199, 167, 198, 0.85);
    margin-top: 10px;
    font-size: 1.15rem;
    font-family: fantasy;
    text-align: center;
}

#funnypictures {
    grid-area: 4/1/4/4;
}

.top-banner {
    color: black;
    text-shadow: 2px 2px pink;
    text-align: center;
    position: relative;
    top: 10px;
    z-index: 1000;
    justify-content: center;
    border-style: solid;
    border-color: rgb(152,178,236);
    border-width: 2px;
    border-radius: 10px;
    background-color: rgba(152,236,210);

}

.top-banner~div {
    border-style: solid;
    border-color: rgb(152,178,236);
    border-width: 1px;
    background-color: rgba(152,236,210);
    border-radius: 10px;
}

.select-list {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 90px 90px 90px 90px 90px 90px;
    justify-content: center;
    gap: 30px;
    color: black;
}

.button {
    display: flex;
    background-color: rgb(236,152,178);
    width: 100px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-style: solid;
}

.menu-links {
    color: black;
    text-decoration: none;
}

.menu-links:link {
    color: black;
    text-decoration: none;
}

.menu-links:visited {
    color: black;
    text-decoration: none;
}

.image-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.city-bg {
    /* Multiple backgrounds specified as a comma-separated list */
    background:
        /* Layer 1 (Top): a gradient overlay for a semi-transparent color effect */
        repeating-radial-gradient(circle at 63% 13%, rgba(245, 39, 145, 0.36), rgba(9, 9, 9, 0) 10px, rgba(255, 255, 255, 0.3) 25px),
        /* Layer 2 (Bottom): a background image */
        url("./images/dafutureischrome.jpg");

    /* Other background properties can be applied to each layer independently */
    background-position: center, center;
    /* Position for each layer */
    background-size: cover, cover;
    /* Size for each layer */
    background-repeat: no-repeat, no-repeat;
    /* Repeat for each layer */

    /* Ensure the element has a defined size to display the background */
    width: auto;
    height: 1375px;

    border-style: solid;
    border-width: 10px;
    border-color: rgba(52, 8, 82, 0.6);
    padding: 1px
}

.alien-bg {
    /* Multiple backgrounds specified as a comma-separated list */
    background:
        /* Layer 1 (Top): a gradient overlay for a semi-transparent color effect */
        repeating-radial-gradient(circle at 63% 13%, rgba(245, 39, 145, 0.36), rgba(9, 9, 9, 0) 10px, rgba(255, 255, 255, 0.3) 25px),
        /* Layer 2 (Bottom): a background image */
        url("./images/allen.jpg");

    /* Other background properties can be applied to each layer independently */
    background-position: center, center;
    /* Position for each layer */
    background-size: cover, cover;
    /* Size for each layer */
    background-repeat: no-repeat, no-repeat;
    /* Repeat for each layer */

    /* Ensure the element has a defined size to display the background */
    width: auto;
    height: 1375px;

    border-style: solid;
    border-width: 10px;
    border-color:rgba(104, 123, 162, 0.85);
    border-radius: 10px;
    padding: 1px
}


.bottom-border {
    position: relative;
    margin-top: 1px;
    display: flex;
    justify-content: center;
    z-index: 1000;
    flex-direction: row;
    gap: 20px;
}