body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f3;
    text-align: center;
}

/*Java Script Settings*/
.highlight {
    color: green !important;
    font-size: 28px;
}

/* My header */
header {
    background: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 0;
    color: #1f4d3a;
    /* dark green */
}

/* Nav */
.desktop-nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #1f4d3a;
    font-weight: bold;
}

.menu-icon {
    display: none;
    font-size: 26px;
}

/* Hero Section */
.hero {
    background: #1f4d3a;
    color: white;
    padding: 60px 20px;

}

.hero h2 {
    margin-top: 0;
}

.hero p {
    width: 60%;
    margin: 20px auto;
}

/* Cards */
.card {
    background: white;
    margin: 30px auto;
    padding: 25px;
    width: 80%;
    border-radius: 20px;
}

/* Images */
img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

/* Button */
button {
    padding: 10px 20px;
    border: none;
    background: #143829;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

/* Mobile Settings Yippee */
@media (max-width: 800px) {
    .desktop-nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }
}