html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav {
    margin-top: 15px;
    margin-bottom: 15px;
}

h1 {
    font-family: 'Tangerine', serif;
    color: #d2d2d2;
    text-shadow: 6px 6px 6px #050000;
    font-size: 5vw;
}

.extra-column {
    padding-left: 50px;
}

.main-header {
    position: relative;
    height: 20vh;
    background-image: url('/img/coffee-beans.jpg');
    background-repeat: repeat;
    background-size: cover;
    max-height: 150px;
    padding: 0px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

#contactEmail {
    color: #2289f3;
    margin-top: 15px;
}
#contactEmail:visited {
    color: #2289f3;
}
#header-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    height: 75%; /* it won't exceed the height of the header */
    padding: 5px;
}

.brownbg {
    background-color: rgba(78, 32, 0, 0.88);
    border-radius: 50px;
    margin: auto;
    display: inline-block;
    padding: 15px;
}

.contactInfo {
    color: #b5b3b3;
    margin-left: 20px;
    margin-right: 20px;
}

.footer {
    background-image: url('/img/canvas-texture-02.jpg');
    background-repeat: repeat;
    height: auto;
    display: block;
    margin-bottom: 10px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

body {
    background-color: #c2b7a7;
    margin: 0;
    padding: 0;
}

.site-container {
    overflow: hidden;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 50px;
    padding: 1px;
}

.about, .main-header, footer {
    position: relative;
    width: 100%;

}

.about, .main-header, footer {
    padding: 15px 0;
}
#backToHome {
    position: absolute;
    top: 0;
    right: 0;
}

.email {
    font-family: "Baskervville SC", serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
}

.about {
    font-family: "Baskervville SC", serif;
    font-weight: 400;
    font-style: normal;
    display: flow;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 25px;
    margin-right: 10vw;
    margin-left: 10vw;
    background-image: url('/img/canvas-texture.jpg');
    background-repeat: repeat;
}
p {
    padding: 10px 25px;
}
h4 {
    font-family: "Baskervville SC", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 20px;
    margin: 15px;
}

.button1 {
    font-family: "Baskervville SC", serif;
    margin: 10px;
    background-color: rgba(210, 159, 96, 0.8);
    font-size: 45px;
    border: 5px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    border-radius: 5px;
    position: absolute;
    top: 0;
    right: 0;

}
.button1:hover {
    background-color: #c2b7a7;
}

.button2 {
    background-color: rgba(210, 159, 96, 0.8);
    font-size: 35px;
    border: 5px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    border-radius: 5px;
    font-family: "Baskervville SC", serif;
    margin: 50px;
    width: 80%;
}

.button2:hover {
    background-color: #c2b7a7;
}

.button3 {
    background-color: rgba(210, 159, 96, 0.8);
    font-size: 25px;
    border: 5px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    border-radius: 5px;
    margin: 10px 10px 10px;
}

.button3:hover {
    background-color: #c2b7a7;
}

.button4 {
    display: inline-block;
    margin: 10px;
    padding: 5px;
    background-color: rgba(210, 159, 96, 0.8);
    font-size: 20px;
    text-decoration: none;
    color: black;
    border: 0px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    border-radius: 5px;
    transition: all 0.5s;
}

.button4:hover {
    background-color: #c2b7a7;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.info {
    font-family: "Baskervville SC", serif;
    font-size: 20px;
    display: flex;
    margin-left: 10vw;
    margin-right: 10vw;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100%*20)); }
}

.mySlides {
    flex: 0 0 auto;
    width: 25vw; /* You can adjust this value as needed */
    min-width: 250px;
    max-height: 100%; /* This ensures taller images don't exceed their container */
    object-fit: cover; /* This will trim the part of the images that exceed their box */
    object-position: center; /* This is to ensure images are centered in their box */
    vertical-align: top;
    animation: scroll calc(15s * 20) linear infinite;
    margin: 0px 5px 0px 0px;
    padding: 0px;
}

.slideshow-container {
    border-top: 2px solid #8B4513; /* Change #8B4513 to the colour you want your border to be */
    border-bottom: 2px solid #8B4513; /* Change #8B4513 to the colour you want your border to be */
    box-shadow: 0px -5px 15px rgba(0,0,0,0.2); /* This creates a slight shadow above, adjust as necessary */
    height: 35vh; /* Height of the container as per your requirement */
    width: 100%;
    white-space: nowrap;
    overflow: hidden; /* Ensure this is enabled */
    display: flex; /* important */
}

.slideshow-container::-webkit-scrollbar {
    display: none;
}

.spread {
    margin-top: 5px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 5px;
}

.no-bottom-margin {
    margin: 0;
}
.facebook-link {
    display: inline-block;
    margin-top: 10px;
    color: #b5b3b3;
}

.facebook-link:visited {
    color: #b5b3b3;
}

.facebook-link:visited path {
    fill: #b5b3b3;
}

.facebook-link svg path {
    fill: currentColor;
}

.td {
    padding-left: 10px;
    padding-right: 10px;
}

@media screen and (min-aspect-ratio: 16/9) and (min-width: 1024px) {
    .about, .main-header, footer {
        width: 80%;  /* Take only 70% of the screen width */
        margin: 0 auto; /* To center the sections */
    }
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    body {
        width: 100%;
    }
    .main-header {
        background-size: 100%;
    }
}
@media only screen and (min-device-width: 480px) and (max-device-width: 600px) {
    /* Here goes your CSS rules for screens between 480px and 600px. */
}

@keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100%)); }
}