@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background-color: #FCECD5;
    color: white;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    gap: 2rem;
    text-align: center;
}

.left {
    flex: 1 1 400px;
}

.right {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #BCB36D;
}

.left h3 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.left p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.left ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.left ul li a {
    text-decoration: none;
    color: #BCB36D;
    font-size: 1.2rem;
    transition: border-bottom 0.3s;
}

.left ul li a:hover {
    border-bottom: 2px solid #BCB36D;
}

#obra-img {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        margin-top: 10rem;
    }

    .left,
    .right {
        flex: 1 1 100%;
    }
    .right #obra-img {
        display: none;
    }
}

@media(max-width: 900px) {
    .right #obra-img {
        display: none;
    }
    .left {
        margin-top: 10rem;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        padding: 4rem;
    }

    #obra-img {
        max-height: 600px;
    }
}
