
body {
    font-family:'Times New Roman', Times, serif;
    text-align: center;
    background-color: #000000;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* min-height: 100vh; */
}
*{
    scrollbar-color: black;
}
.image-container {
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    font-family: "Roboto", sans-serif;
    color: #e1d1c6;
    margin-top: 10px;
}

.page-title h1 {
    font-size: 75px;
    margin-bottom: 10px;
}

.page-title h2 {
    font-size: 25px;
    margin-top: 0;
}

.button-group {
    display: flex;
    /* visibility: hidden; */
    justify-content: center;
    gap: 20px;
    margin: 10px;
}

.btn {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 20px;
}

.btn:hover {
    color: #AE7450;
}
.gap {
    height: 25vh;
}

.footer {
    width: 100%;
    background-color: white;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.75s ease-in, opacity 0.75s ease-in;
}

.footer.show {
    transform: translateY(0);
    opacity: 1;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.footer-btn {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
}

.footer-subtext {
    font-size: 16px;
    color: #555;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}

.footer-btn:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 30px;
    }
    .page-title h2 {
        font-size: 15px;
    }
    .gap {
        height: 30vh;
    }
    

    .btn {
        font-size: 16px;
    }
}