body
{
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f8f1;
}

.banner
{
    background-color: #fd2500;
    color: white;
    text-align: center;
    padding: 25px;
}

.navbar
{
    background-color: #d6d817;
    display: flex;
    justify-content: center;
}

.navlink
{
    color: white;
    text-decoration: none;
    padding: 15px 25px;
}

.navlink:hover
{
    background-color: #fd2500;
}

.hero
{
    height: 400px;
    background-image: url(images/images.png);
    background-size: cover;
    background-position: center;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text
{
    background-color: rgba(0,0,0,.5);
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 36px;
}

.content
{
    width: 80%;
    margin: 40px auto;
}

.card-container
{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.card
{
    flex: 1;
    min-width: 250px;
    
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px gray;
}

.card img
{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.button
{
    display: inline-block;
    background-color: #d6d817;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.button:hover
{
    background-color: #fd2500;
}

iframe
{
    width: 100%;
    height: 400px;
    border: none;
    margin-top: 20px;
}

.footer
{
    background-color: #fd2500;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}