section article>div
{
    margin: auto;
    border: solid #2F2D2C thick;
}

.imageSlider
{
    width: 640px;
    height: 480px;
    overflow: hidden;
    position: relative;
}

.switchImages
{
    display: flex;
    position: absolute;
    transition: left 0.75s ease-out;
}

.bubbles
{
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 5px;
}

.bubble
{
    margin: 2.5px;
    background-color: white;
    border-radius: 100000px;
    width: 10px;
    height: 10px;
    display: inline-block;
    opacity: 0.65;
    cursor: pointer;
    transition: opacity 0.1s linear;
}

.bubble.active
{
    opacity: 1;
}

.bubble:hover
{
    opacity: 0.9;
}

.next::after, .prev::after
{
    content: ">";
    position: absolute;
    top: 50%;
    right: 0;
    background-color: white;
    font-size: 20px;
    width: 1em;
    height: 3em;
    font-weight: bold;
    font-family: sans-serif;
    transform: translateY(-50%);
    line-height: 3em;
    box-sizing: border-box;
    padding: 0 0.2em;
    cursor: pointer;
    opacity: 0.25;
    transition: opacity 0.2s linear;
}

.next:hover::after, .prev:hover:after
{
    opacity: 1;
}

.prev::after
{
    content: "<";
    left: 0;
}



@media screen and (max-width: 880px)
{
    body
    {
        background-image: none;
    }

    nav
    {
        height: auto;
        width: 100%;
    }

    nav ul li
    {
        display: block;
    }

    nav ul li a
    {
        display: block;
        width: auto;
        line-height: 2.5em;
        color: #454040;
    }

    section aside
    {
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }

    section > article
    {
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }

    #contact
    {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    #map
    {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    table
    {
        margin: auto;
    }
}
@media screen and (max-width: 640px)
{
    .imageSlider
    {
        display: none;
    }

    .fillRestOfPage
    {
        height: 0;
    }
}