* {
    box-sizing: border-box;
}

body {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    min-width: 900px;
    max-width: 2000px; 
    margin: 0;
}

#wrapper {
    margin: 0 auto;
    width: 80%;
}

#blog-wrapper {
    margin: 0 auto;
    width: 40%;
}

#about-wrapper {
    margin: 0 auto;
    width: 60%;
}

#navbar {
    position: fixed;
    top: 0; /* Ensure navbar starts at the top of the page */
    left: 0;
    background-color: #FFFFFF; /* Adjust background color */
    z-index: 1000; /* Keep navbar on top of other content */
    height: 92px; /* Set a fixed height for the navbar */
    transition: top 0.4s ease-in-out; /* Smooth transition when sliding the navbar */
}
.navdiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Ensure that the content is centered vertically */}

.logo img {
    width: 200px;
    margin-left: 30px;
    display: none;
}

.banner {
    margin: auto;
    width: 100%;
}

.blog-header h2 {
    font-size: 60px;
    color: #63CBE5;
    text-align: left;
    margin: 0;
    margin-bottom: 20px;
}

.blog-header h3{
    text-align: left;
    font-size: 22px;
}

.blog-content h3 {
    text-align: left;
    font-size: 27px;
}

.blog-content p {
    text-align: left;
    font-size: 22px;
    line-height: 33px;
}

.blog-content ul {
    font-size: 27px;
}

.blog-content li {
    font-size: 22px;
    line-height: 33px;
}

.about-content p {
    text-align: center;
    font-size: 22px;
    line-height: 33px;
}

.onethird {
    display: flex;
    flex-direction: column;
    align-items: center;
    float: left;
    width: 33%;
    padding: 1em;
}

.onethird li {
    list-style: none;
    text-align: center;
    font-size: 20px;
    color: #63CBE5;
    padding-right: 2em;
}

.onethird img {
    height: 200px;
    width: auto;
}


.footer-content {
    display: flex;
    float: left;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-left: 2em;
    padding-right: 2em;
    justify-content: space-around;
}

.footer-content ul{
    text-align: center;
    padding: 0;
    margin: 0;
}

.footer-content h4, h5{
    color: #FFFFFF;
}

.footer-content a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-content li {
    text-align: center;
    list-style: none;
    color: #FFFFFF;
}

nav {
    position: fixed;
    width: 100%;
}

nav ul {
    list-style-type: none; /* Remove bullet points */
    display: flex; /* Use flexbox for layout */
}

nav li {
    margin-right: 70px; /* Space between navigation items */
    font-size: 23px;
}

nav a {
    color: #63CBE5;
    text-decoration: none; /* Remove underline from links */
}

nav a:hover {
    color: #343434;
}

header {
    margin: auto;
    padding-top: 10%;
}

header h1 {
    text-align: center;
    font-size: 70px;
    color: #63CBE5;
    margin: 0;
}

header h3 {
    text-align: center;
    color: #343434;
    margin-left: 10em;
    margin-right: 10em;
}

main h1 {
    text-align: center;
    font-size: 70px;
    color: #63CBE5;
}

main h2 {
    text-align: center;
    font-size: 30px;
    color: #343434;
}

main h3{
    text-align: center;
    font-size: 30px;
    color: #343434;
}

main li {
    color: #343434;
    font-size: 20px;
}

main p {
    text-align: center;
}

table {
    margin: auto;
    margin-bottom: 3%;
    border-collapse: collapse;
    background-color: #FFFFFF;
}

table td, th {
    padding: 0.5em;
    border: 1px solid #343434;
    font-size: 30px;
}

tr:nth-of-type(odd) {
    background-color: #e9e9e9;
}

button {
    display: block;
    background-color: #63CBE5; 
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin: 0 auto;
    margin-bottom: 20px;   
}
    

button:hover {
    background-color: #343434;
}

video {
    width: 100%;
}

.our-mission {
    background-color: #63CBE5;
    color: #FFFFFF;
    clear: both;
}

.our-mission h1 {
    padding-top: 70px;
    line-height: 20px;
    color: #FFFFFF;
}

.our-mission p{
    text-align: center;
    padding-bottom: 40px;
    font-size: 20px;
}

#catalog-container-index {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin: auto;
}

#catalog-container-index img{
width: 100%;
}


#catalog-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    row-gap: 70px;
    margin: auto;
}

#catalog-container img {
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding-top: 30px;
    font-size: 22px;
}

form input, datalist, textarea {
    margin-bottom: 1em;
    font-size: 22px;
    width: 200%;
}

input [type=submit] {
    padding-left: 2em;
}

textarea {
    width: 200%;
}

footer {
    display: flex;
    background-color: #343434;
    padding-top: 50px;
    padding-bottom: 30px;
    justify-content: space-between;
}

@media (min-width: 600px) {
    
    nav li {
        padding: 10px;
    }

    #catalog-container h3 {
        width: 100%;
    }

    #blog-wrapper {
        margin: 0 auto;
        width: 70%;
    }

    #about-wrapper {
        margin: 0 auto;
        width: 70%;
    }
    

    form {
        width: 60%;
        max-width: 40em;
        display: grid;
        grid-gap: 1em;
        grid-template-columns: 9em 1fr;
    }

    form [type="submit"] {
        grid-column: 2;
        width: 9em;
        margin-bottom: 0.5em;
      }

}

@media (min-width: 1024px) {
    .logo img {
        display: block;
    }

    header {
        padding-top: 7%;
    }

    button {
        color: white;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        
        /* Centering the button horizontally */
        display: block;
        margin: 0 auto; /* Horizontally center button */ 
        margin-bottom: 20px;   
    }

    #blog-wrapper {
        margin: 0 auto;
        width: 40%;
    }

    #about-wrapper {
        margin: 0 auto;
        width: 60%;
    }    

    #catalog-container {
        grid-template-columns: repeat(4, 1fr);
    }

    #catalog-container-index {
        grid-template-columns: repeat(4, 1fr);
    }


    #wrapper {
        margin: auto;
        width: 80%;
    }

}
