/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    background-color: #fff0f5;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}


/* Fondo de globos */

#heartCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


/* Contenedor de dos columnas */

.main-container {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
}


/* Lado izquierdo: mensaje */

.message-box {
    width: 50%;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background-color: #ffe6ecb0;
    z-index: 3;
}

.message-box p {
    font-size: 20px;
    color: #6b3a3a;
    margin-bottom: 10px;
}

.counter {
    font-weight: bold;
    font-size: 20px;
    color: #6b3a3a;
}


/* Lado derecho: imagen centrada */

.image-box {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.main-photo {
    width: 75%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}