html, body {
    margin: 0;
    padding: 0;
    text-align: center;
}

h3 {
    font-family: "Fjalla One", sans-serif;
    padding-bottom: 0%;
    font-size: 2rem;
    margin-bottom: 0%;
    color:#668453
}

h4 {
    font-family: "Geologica", sans-serif;
}
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;  
    z-index: -1;
}

.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-container {
    position: relative;
    z-index: 1;
    max-width: 200px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: relative;
    z-index: 1;
}
.class {
    text-align: left;
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 0%;
    padding-bottom: 0%;
    margin: 0;
}
.header-text {
    position: absolute;
    top: 60%;
    left: 34%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px black;
    text-align: center;
    z-index: 1;
}

@media (max-width: 700px) {
    .header-text {
        display: none;
    }
}

.logo {
    max-width: 200px;
    height: auto;
    position: relative;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 1;
}

.sidebar {
    width: 250px;
    text-align: right;
    font-weight: bold;
    padding-right: 10px;
    letter-spacing: 1px;
}

nav a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: rgb(255, 255, 255);
}

nav a:hover {
    color: green;
}

body {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-family: sans-serif;
}

@media (max-width: 768px) {

    header {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        max-width: 80%;
    }

    .wrapper {
        position: relative;
        top: 20px;
        width: 100%;
        text-align: center;
    }

    .sidebar {
        width: 100%;
        margin-right: 5%;
        text-align: left;
        font-weight: bold;
        padding-right: 0;
    }

    nav a {
        font-size: 18px;
        margin: 8px 0;
    }

    nav a:hover {
        color: green;
    }
}

body {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-family: sans-serif;
}

.gecko {
    transform: scaleX(-1); /* Flip image horizontally */
    float: right;
    margin-left: 15px;
    margin-bottom: 10px;
}

.green-container {
    background-color: rgb(95, 170, 95);
    padding: 20px;
    border-radius: 8px;
    width: fit-content;
    margin: 5%;
}

ul {
    list-style-type: square; 
    padding-left: 20px;
    margin: 0;
}
li {
    font-size: 18px; 
    margin-bottom: 8px;
    color: white;
}
main {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.container > div {
    flex: 1 1 45%;
    box-sizing: border-box;
}

.container {
    column-count: 2;
    width: 50%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px auto;
}

.image {
    background-color: #96e2b0;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
}

.image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-bottom: 10px;
}

.degrees-section {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.degrees-section h3 {
    text-align: center;
    font-family: "Fjalla One", sans-serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.degree-list {
    list-style-type: none;
    padding: 0;
}

.degree-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.degree-list li:hover {
    background-color: #91b57a
}

footer {
    height: 100px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: rgb(255, 255, 255);
    color: rgb(125, 125, 125);
    font-family: "Fjalla One", sans-serif;
}