:root {
    --accent-color: #333;
    --background-color: #f4f4f4;
    --primary-color: #4d6945;
    --secondary-color: #706c69;
    --link-color: lightblue;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 25px;
    line-height: 1.15;
    color: var(--accent-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 17px;
    }
}

footer {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 10px;
    text-align: center;
    line-height: 10px;
}

form p {
    margin: 10px 0;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 20px;
}

button[type="submit"] {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
}

button[type="submit"]:hover {
    background-color: var(--secondary-color);
}

h1 {
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

a {
    color: var(--link-color);
}

@media screen and (max-width: 768px) {
    button {
        width: 100%;
    }
}

.navbar {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 0.2rem 0.8rem;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 30px;
}

.navbarLeft {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
}

@media screen and (max-width: 768px) {
    .navbar {
        font-size: 1.3rem;
        height: 40px;
    }

    .navbarLeft {
        width: 100px;
    }
}

.navbarLeftText {
    color: var(--background-color);
    text-decoration: none;
    transition: opacity .2s;
}

.navbarLeftText:hover {
    opacity: 0.6;
}

.navbarRight {
    display: flex;
    justify-content: end;
    align-items: center;
    width: calc(100% - 100px);
    gap: 1rem;
}

.navbarRight a {
    color: var(--background-color);
    text-decoration: none;
    transition: opacity .2s;
}

.navbarRight a:hover {
    opacity: 0.6;
}

.mainContent {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.section {
    width: 75%;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .section {
        width: 90%;
        text-align: center;
    }
}

.listItem {
    margin-bottom: 5px;
}

.contentContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--accent-color);
    gap: 30px;
}

.contentContainer>img {
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

@media screen and (max-width: 768px) {
    .contentContainer {
        flex-direction: column;
        gap: unset;
    }

    .contentContainer>img {
        width: 70%;
        height: 70%;
    }
}

.content {
    width: 100%;
    text-align: left;
}

.ulWrapper {
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 768px) {
    .ulWrapper {
        flex-direction: column;
    }
}