* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('lotus-cursor.png'), url('lotus-cursor.cur'), auto;
}

body {
    min-height: 100vh;
    width: 100%;
    position: relative;
}

/* Blurred background using pseudo-element */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('final-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    filter: blur(0px);
    z-index: -1;
}

/* Ensure the background covers the entire viewport even on scroll */
html {
    height: 100%;
}

/* Typography */
h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 3.5rem;
    color: #2c2c2c;
    text-align: center;
    margin-top: 5vh;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.content {
    font-family: 'Playfair Display', serif;
    color: #2c2c2c;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem 2rem;
    line-height: 1.6;
    text-align: center;
}

.intro {
    font-size: 1.3rem;
    text-align: center;
    margin: 2rem 0 3rem 0;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

ul {
    margin: 1rem auto;
    padding-left: 0;
    list-style-position: inside;
    display: inline-block;
    text-align: center;
}

li {
    margin: 0.5rem 0;
}

p {
    margin: 1rem 0;
    display: block;
}

a {
    color: #2c2c2c;
    text-decoration: underline;
    cursor: url('lotus-cursor.png'), url('lotus-cursor.cur'), pointer;
}

a:hover {
    opacity: 0.7;
}

.responsive-image {
    margin: 1rem 0.5rem;
    display: inline-block;
}

hr {
    border: none;
    border-top: 1px solid #2c2c2c;
    margin: 2rem 0;
    opacity: 0.3;
}