* {
    margin: 0;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    background: #71cde9;
    line-height: 1.6;
}

.hero-image {
    width: 60%;
    height: auto;
    margin-top: 6%;
    margin-bottom: 3%;
}

.logo {
    width: 60px;
    border-radius: 15px;
    position: static;
}

.site-header {
    background: linear-gradient(135deg, #ffaa60, #ff950b);
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
}

.site-header h1 {
    font-size: 3rem;
    font-family: 'Georgia', serif;
    margin: 0;
}

.site-header p {
    font-size: 1.2rem;
    font-style: italic;
}

.navbar {
    background-color: #f78b3e;
    height: 5em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.navbar ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar li {
    margin: 15px;
}

.navbar a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.navbar a:hover {
    color: #472b11;
}

.navbar a:active {
    color: #000000;
}

.section {
    text-align: center;
    background: #ffffff;
    margin-top: 6%;
}

.section h2 {
    text-align: center;
    color: #000000;
}

.post {
    background: #f78b3e;
    border-radius: 8px;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 6%;
    margin-bottom: 6%;
}

.post h3 {
    margin: 0 0 0.5rem;
    color: #ffffff;
}
 
.post p {
    margin: 0 0 1rem;
}

.read-more {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline;
}

.site-footer {
    width: 100%;
    text-align: center;
    background-color: #f78b3e;
    color: rgb(255, 255, 255);
    padding: 1rem 0;
    margin-top: 20px;
}

.text {
    padding-left: 5%;
    padding-right: 5%;
}
 
.carousel-wrapper {
    background: #ffffff;
    max-width: 100%;
    display: flex;
    justify-content: center;
}
 
#carouselDemo {
    width: 60%;
}
 
.carousel-caption {
    border: solid rgba(48, 48, 48, 0.6);
    background-color: rgba(48, 48, 48, 0.6);
    margin-bottom: 3%;
    border-radius: 2vh;
}
 
.carousel-caption p {
    margin: 0;
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    font-size: 16px;
}
 
.carousel-caption h5 {
    font-family: "Montserrat", serif;
    font-weight: 700;
    font-size: 23px;
}
 
@media (max-width: 750px) {
    .carousel-caption p {
        visibility: hidden;
    }    
 
    .carousel-caption {
        height: 20%;
    }  
 
    .carousel-caption h5 {
        position: relative;
        margin-bottom: 10%;
    }  
}

.main-nav {
    height: fit-content;
}
