.body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    margin: 0;
    margin-top: -280px;
    
}

.container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    width: 80%;
    height: 70%;
    margin-right: 5%;
  
}

.lara-image {
    width: 70%;
    height: 70%;
    border-radius: 20px;
    margin-left: 25%;
}

.rectangle {
    background-color: #FFFFFF;
    width: 100%;
    border-radius: 20px;
    box-shadow: 
        0 0 10px rgba(250, 247, 247, 0.1),
        0 0 20px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    align-items: center;
    height: 70%;
}

.column {
    text-align: center;
    padding: 10px;
}

.title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #5a67d8;
}

.subtitle {
    font-size: 1rem;
    color: #999;
    display: inline;
    width: 30vh;
}

.button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 1rem;
    color: #fff;
    background-color: #5a67d8;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0px 15px 6px rgba(124, 124, 124, 0.1);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
        height: auto;
    }
    .lara-image {
        width: 50%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .rectangle {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .lara-image {
        width: 70%;
    }
    .rectangle {
        grid-template-columns: 1fr;
    }
    .title {
        font-size: 2.2rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .body {
        margin-top: -150px;
  
    }
    .lara-image {
        width: 80%;
    }
    .title {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 0.8rem;
    }
    .button {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .body {
        flex-direction: column;
        margin-top: -150px;
        height: auto;
        margin-bottom: 50px;
    }
    .container {
        width: 90%;
        height: auto;

        padding: 10px;
    }
    .lara-image {
        width: 90%;
        height: auto;
        margin: 0 auto 20px;
    }
    .rectangle {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    .column {
        padding: 10px 0;
    }
    .title {
        font-size: 1.5rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .button {
        font-size: 0.8rem;
        padding: 10px 20px;
        margin-top: 20%;
        background-color: #FFFFFF;
        color: #5a67d8;
    }
}

