*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}


:root {
    --main-color: #71a54b;
    --secondary-color: #eeeeee;
}

::selection {
    background-color: var(--main-color);
    color: white;
}




.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.navigation {
    margin-bottom: -20px;
    flex-direction: column;
    width: 100%;
    background-image: linear-gradient(rgba(122, 122, 122, 0.5), white) ;
}
   
.menu-item {
    margin: -2px 0px 0px -2px;
    padding: 20px 15px;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    /* height: 4em; */
}

.menu-item.link {
    /* text-align: center;
    line-height: 2em; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-collapse: collapse;
    border-left: 2px solid black;
    border-right: 2px solid black;
    margin: -2px 0px 0px -2px;
    height: 4em;
    transition: 0.35s ease-in-out;
}

.img-fixed {
    width: 100px;
}

.img-fixed-larger {
    width: 85%;
    height: 100%;
}

.img-desc {
    display: flex;
    flex-direction: column;
}

.description {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    margin-top: 7px;
}

/** LINKS **/
.link {
    color: black;
    text-decoration: none;
}

.link-green {
    color: var(--main-color);
}

.menu-item.link:hover {
    color: white;
    background-color: rgb(59, 55, 55);
    transition: 0.35s ease-in-out;
}

.link-active {
    color: white;
    background-color: rgb(59, 55, 55);
}

.burger {
    /* margin-right: 230px; */
    padding:5px;
    cursor: pointer;
    display: none;
}

.burger div {
    width: 27px;
    height: 5px;
    background-color: black;
    margin: 4px 0px;
    border-radius: 10px;
    display: none;

}

.KUD {
    display: block;
    font-size: 40px;
    text-align: center;
}

.main {
    flex-direction: column;   
}

.main-content {
    display: flex;
    flex-direction: column;
    /* text-align: justify; */
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
    padding: 6px 0px;
    width: 100%;
}

.main-content:nth-child(2n + 0) {
    background-color: var(--secondary-color);
    width: 100%;
}

.main-content:last-child {
    margin-bottom: 0;
}

.title {
    text-align: center;
}

.main-title {
    grid-column: 1/3;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 37px;
    color: var(--main-color);
}

.pics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-column-gap: 10px; */
    width: 80%;
    height: 100%;
    justify-items:center;
    align-items: center;
    margin-top: 25px;
}

.pics-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

.pics-vertical .img-desc {
    width: 50%;
}

.video {
    width: 70%;
}

.big-text {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10px;
    width: 70%;
    font-size: 20px;
    justify-items: center;
}

.button {
    margin-top: 10px;
    margin-right: 10px;
    width: 110px;
    height: 45px;
    background-color: #71a54b;
    border: none;
    border-radius: 7px;
    color: white;
    font-size: 15px;
    cursor: pointer;
}

.button:hover {
    background-color: #5f8b3f;
}



.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    /* margin-top: 25px; */
    padding: 10px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: rgb(199, 204, 201);
    background-color: rgb(27, 26, 18);
}