/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: "Manrope", sans-serif;
    background: #f4ebdb;
    color: #3d2913;
    overflow: hidden;
}

/* Imagen superior izquierda */
.top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    max-width: 120px;
}

/* Imagen inferior derecha */
.bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50vw;
    max-width: 350px;
}

/* Contenido central */
.center-content {
    text-align: center;
    z-index: 10;
}

/* Logo */
.logo {
    margin-top: 30px;
    width: 50vw;
    max-width: 350px;
}


/* Responsivo */
@media (max-width: 600px) {
    .logo {
        width: 75vw;
    }

    .bottom-right {
        width: 60vw;
    }
}