body {
    margin: 0 auto;
}

.navbar {
    display: flex;
    background: #fff;
    margin: 0 auto;
    left: 0;
    right: 0;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px 0px 20px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-bottom: 4px solid #2c552c;;
}

.event {
    background: #2c552c;
    left: 0;
    right: 0;
    width: 100%;
    height: 15vh;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: flex;
}

.container {
    padding: 3rem 10rem 3rem 10rem;
    display: flex;
    gap: 10vw;
    margin-bottom: 5vh;
}

#containerbg {
    background-image: url("./bd.jpg");
    background-size: cover;
    height: 30vh;
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header>img{
    height:25px;

}

.center {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.center>img{
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card {
    background-color: #2c552c;
    margin-bottom: 5vh;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: background-color 1000ms ease, transform 1000ms ease;
}

a {
    font-family: 'Merriweather';
    font-size: 1.0rem;
    color: #2c552c;
    text-decoration: none;
    font-weight: bold;
}

h1 {
    color: #fff;
    font-weight: 900;
    font-family: 'Poppins';
    margin: 0;
    text-align: center;
    font-size: 3rem;
}

.card:hover {
    background-color: #488847;
    transform: scale(1.1)
}

h2 {

    font-family: 'Poppins';
    margin: 10px 0px;
    color: white;
}

h3 {
    font-size: 24px;
    font-family: 'Poppins';
    margin: 0;
    color: #fff;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}


@media screen and (max-width: 768px) {
    ul {
        display: none;
    }
    a {
        font-size: 0.5rem;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 16px;
    }
    .container {
        padding: 10px;
        align-items: center;
        flex-direction: column;
    }
    .center {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header {
        width: 100%;
    }
    #event {
        height: fit-content;
        width: 80%;
        justify-content: center;
    }
    #event-mobile{
        padding-top: 40px;
    }
}


ul>a {
    padding: 0px 10px;
    text-transform: uppercase;
    font-weight: 500;
}

#logo {
    font-size: 1.25rem;
}

#learn {
    padding: 10px;
    font-size: 1rem;
    border-radius: 15px;
    font-weight: bold;
    border: 2px solid #2c552c;
}