body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Raleway', sans-serif;
}

.background {
    background-image: url(http://www.thegrowinggift.com/images/banners/slider-regalos-2.jpg);
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: calc(100% - 372px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.text-container {
    max-width: 400px;
    text-align: right;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

.text-container h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.text-container p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.text-container a {
    color: #FFD700;
    text-decoration: none;
}

.text-container a:hover {
    text-decoration: underline;
}

.header {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #594B42; /* Optional: Add a semi-transparent background */
}

.header img {
    height: 90px; /* Adjust logo size to fit within the header */
}