* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ebd46d;
        font-family: "Lexend", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
}

h1, h2, h3 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}


.gradient-hero {
    background: linear-gradient(135deg, #da8989, #e8904e, #ebd46d, #92dc7e, #89a3ef, #d5a0e4);
}

.opener {
    padding: 3rem;

    h1{
    text-align: center;
    padding-bottom: 1rem;
    }

    p{
    text-align: center;
    padding: 2rem;
    }

}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu ul {
    display: flex;          
    gap: 2rem;             
    padding: 2rem;
}
  
.nav-menu li {
    display: inline-block;
}
  
.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}
  
.nav-menu a:hover {
    color: #da8989
}

.container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem;
}
  
.card {
    background-color: #d5a0e4;
    border: 1px solid #92dc7e;
    border-radius: 8px;
    padding: 3rem;
    width: 37.5rem;
    box-sizing: border-box;
    text-align: center;
}
  
.card img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
  
.card-title {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.text-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem;
}

.text-content {
    flex: 1;
}
  
.text-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
  
.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
  
.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
  
.footer {
    background: linear-gradient(135deg, #da8989, #e8904e, #ebd46d, #92dc7e, #89a3ef, #d5a0e4);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3rem;
}