body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fefff9;
    overflow-x: hidden;
}
  

.page-header {
    text-align: center;
    margin-bottom: 540px;
    z-index: 3;
}

.page-header h1 {
    font-size: 60px;
    color: #0f1934;
    font-family: "Bungee Shade", serif;
    font-weight: bold;
}

.orange-bar {
    background-color: #fb998c;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 25.15%;
    z-index: 1;
}

.front-page-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.start-button {
    padding: 13px 60px;
    font-size: 20px;
    font-family: "Kavoon", serif;
    background-color: #0f1934;
    color: #fefff9;
    border-radius: 25px;
    cursor: pointer;
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: box-shadow 0.3s ease, background-color 0.1s ease; /* Add transition for smooth effect */
}

.start-button:hover {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3); /* Adjust horizontal and vertical offsets */
}


.start-button:active {
    background-color: #27354a; /* Adjust background color to a lighter shade */
}