html, body {
    height: max-content;
    margin: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #45564f, #ced6bc);
    background-size: contain;
    background-repeat: no-repeat;
}
.wrapper {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
    width: 100%;
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.centered-box {
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    width: 100%; /* Ensure it uses full width of container */
    max-width: 800px;
    margin: 20px 0;
    box-sizing: border-box; /* Ensure padding and border are included in the element’s total width and height */
    flex-shrink: 0;

}


.content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.text {
    flex: 1;
    padding: 20px;
}

.header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}


.image-header {
    flex: 1;
    max-width: 50%;
    margin-bottom: 20px;
}

.text-header {
    flex: 1;
    padding: 20px;
    max-width: 50%;
}




@media (max-width: 700px) {
    body {
        height: fit-content;
    }
    .image {
        max-width: 100%;
    }
    .text-header {
        max-width: 100%;
    }
    .centered-box {
        max-width: 90%;
    }

}

footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    opacity: 80%;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-content p {
    margin: 0;
}
