@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fffeee;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#responsive-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Add some floating balls as decorative elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/jeje-bg.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}
