/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "cormorant-garamond";
    src: url('fonts/cormorant-garamond/CormorantGaramond-Regular.ttf') format('truetype');
}

body {
    font-family: 'cormorant-garamond', 'Segoe UI', sans-serif;
    background: #eeeae3;
}

/* PAGE CONTENT */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0rem 0rem 0rem; /* top padding added */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content horizontally */
    align-items: center;     /* Centers content vertically */
    width: 100vw;
    position: relative;
    color: black;
}

.page-content h1 {
    text-align: center;
    font-size: 2rem;
}

.line-separator {
    border: none;
    border-top: 1px solid #000; /* Customize color and thickness */
    margin: 10px 0; /* Adjust spacing as needed */
    width: 85%;
}