/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    background-color: #e6c0f0;
    color: #f4ddf2;
    font-family: 'Poppins', sans-serif;
    background-image: url("purplelilies.jpg");
    background-size: cover;     /* makes it fill the screen */
    background-repeat: no-repeat;
    /*background-attachment: fixed;  optional: makes it stay still when you scroll */
}

/* Centers the boxes on the page */
.container {
    display: flex;
    justify-content: center;
    gap: 30px;             /* space between the two boxes */
    margin-top: 50px;       /* pushes them down the page */
}

/* Each translucent box */
.box {
    width: 400px;
    padding: 50px;
    background: rgba(128, 120, 186, 0.7);  /* white with lowered opacity */
    /*backdrop-filter: blur(6px);             /* optional: dreamy glass effect */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #2b2b2b;
    text-align: center;
}

/* Optional: make headings use your aesthetic font */
.box h2 {
    font-family: 'Cormorant Garamond', serif;
    margin-top: 0;  /* removes extra spacing */
    font-weight: 600;
    color: #f4ddf2;
    font-size: 25px;
}

.box p {
    line-height: 1.5;
    color: #f4ddf2;
    font-family: 'Poppins', serif;
    font-size: 20px;
}

.hollow-circle-list {
    list-style-type: circle;
    line-height: 1.5;
    color: #f4ddf2;
    font-family: 'Poppins', serif;
    font-size: 20px;
    text-align: left;
}



