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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5e6ce;
}

.card {
    border: 3px dotted #c21f1f;
    /* border-radius: 18px; */
    padding: 2.5rem 3rem;
    max-width: 600px;
    width: min(90vw, 600px);
    background-color: #f4f3e8;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

h1 {
    color: #c21f1f;
    font-size: 3rem;
    font-weight: 500;
    font-family: 'Helvetica', sans-serif;
    margin-bottom: 1rem;
}

p {
    color: #c21f1f;
    font-size: 1.1rem;
    line-height: 1.6;
}

nav {
    margin-top: 2rem;
}

nav a {
    color: #c21f1f;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 0.7;
}

ul {
    text-align: left;
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

li {
    margin-bottom: 1rem;
    color: #c21f1f;
    font-size: 1.1rem;
    line-height: 1.6;
}

li a {
    color: #c21f1f;
    text-decoration: underline;
    transition: opacity 0.2s;
}

li a:hover {
    opacity: 0.7;
}

/* Christmas List Page Styles */
.christmas-list-page main {
    border: none;
    background-color: transparent;
    box-shadow: none;
    padding: 2.5rem 4rem;
    max-width: 800px;
    width: min(90vw, 800px);
    position: relative;
    border-left: 3px solid #c21f1f;
    border-right: 3px solid #c21f1f;
    border-left-style: groove;
    border-right-style: groove;
    /* make border groove from red to green */
    border-left-color: #c21f1f;
    border-right-color: #c21f1f;
}

.christmas-list-page h1 {
    font-family: 'Papyrus', fantasy;
}

.christmas-list-page ul {
    list-style: disc;
    padding-left: 1.5rem;
}

