body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    overflow: hidden;
}

.page {
    display: none;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.page img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
    margin-top: 60px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.page button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #57596a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.page button:hover {
    background-color: #000000;
}

.page h1 {
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000;
}

.page h4 {
    font-size: 16px;
    color: white;
    margin-top: 1px;
    margin-bottom: -10px;
    text-shadow: 2px 2px 4px #000;
}

#page1 {
    display: flex;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .page img {
        max-width: 100%;
    }

    .page h1 {
        font-size: 20px;
    }

    .page button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .content {
        margin-top: 5vh;
        margin-bottom: 5vh;
    }
}
