body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

h2{
    margin: 0;
    font-size: 20px;

}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-height: 600px;
    width: 100%;
    overflow: hidden;
}

header {
    width: 100%;
    background-image: url('../img/headerBackground.svg');
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    z-index: 10;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
    padding: 16px;
    box-sizing: border-box;
}

.background {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.contact {
    text-decoration: none;
    color: #F5C235;
    font-size: 20px;
}

.contact:hover {
    color: #E96029;
}

.contact:active {
    color: #E96029;
    transform: scale(.9);
}

.text-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    align-self: center;
    justify-content: center;
    max-width: 500px;
    text-align: center;
    top: 40%;
    color: rgb(255, 255, 255);
}

#wrapper{
    margin-top: 40px;
}

.text-container h1 {
    font-size: 36px;
    max-width: 410px;
    margin: 0 auto;
    color: rgb(255, 255, 255);
}

.text-container p {
    margin: 0;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    color: rgb(255, 255, 255);
    
}

.about {
    padding: 80px 116px;
    max-width: 800px;
    margin: 0 auto;
}

.about h1 {
    padding: 0;
    margin: 0;
}

.about p {
    padding: 0;
    margin: 0;
    text-align: justify;

}

.about a {
    color: black;
    font-weight: 600;
}

.divContainer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    margin: 40px 0;
    gap: 20px;
}

.card{
    padding: 20px;
    border: 1px solid;
    border-color: rgba(51, 51, 51, 0.2);;
    border-radius: 10px;
    -webkit-box-shadow: 4px 4px 5px 0px rgba(51, 51, 51, 0.2);
    -moz-box-shadow: 4px 4px 5px 0px rgba(51, 51, 51, 0.2);;
    box-shadow: 4px 4px 5px 0px rgba(51, 51, 51, 0.2);
}

.card p{
    font-size: 13px;
}
footer {
    background: rgb(51, 51, 51);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-content {
    max-width: 1024px;
    margin: 0 auto;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #F5C235;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 425px) {
    .header img {
        width: 50px;
    }

    .header a {
        font-size: 15px;
    }

    .text-container {
        display: none;
    }

    .text-container h1 {
        font-size: 25px;
    }

    .text-container p {
        font-size: 16px;
    }

    .about {
        padding: 20px;
    }

    .divContainer{
        grid-template-columns: 1fr;
    }




}