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

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: url('../img/image23.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-family: 'Cinzel', serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    text-align: center;
}


/* Title Styling */
h1 {
    font-size: 4rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

/* Subtitle (Remembering Parkland: February 2018) */
h2 {
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italics;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    margin-top: 0;
}

/* Bottom Section - Move Up Without Affecting Title */
.bottom-section {
    position: absolute;
    bottom: 9%; /* Adjust this to move it up */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* Keep Title & Subtitle in Place */
.title-section {
    position: absolute;
    top: 38%; /* Ensures title stays at the top */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* Ensure "Stories Etched..." Spacing is Correct */
.tagline {
    font-size: 1.2rem;
    margin-bottom: 10px; /* Keeps spacing between text and button */
}

/* Button Styling */
.enter-button {
    padding: 12px 24px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    border: 1px solid white;
    border-radius: 0;
    transition: background 0.3s;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.enter-button:hover {
    background: rgba(255, 255, 255, 0.5);
}



.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
}

