body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-image: url(/wallpaper/wallpaper3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-y: auto;
    overflow-x: hidden;
    
}
@media (max-width: 767px) and (orientation: landscape) {
    body {
        overflow: auto; 
        height: auto; 
        width: 100%;
    }
}
.button-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: transparent;
    z-index: 1001; 
}

.menu {
    display: none;
    background-color: #333;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    padding: 10px;
    text-align: center;
    z-index: 1001; 
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu ul li {
    margin: 10px 0;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.menu-toggle {
    background-color: #007bff;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    z-index: 1001; 
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none; 
    }

    .menu {
        display: block;
        position: static; 
        background-color: transparent;
    }

    .menu ul {
        display: flex;
        justify-content: space-around;
    }

    .menu ul li {
        margin: 0;
    }
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
}

.button:hover {
    background-color: #0056b3;
}
.centered-text1 {
    width: 50vw;
    height: auto; 
    max-height: none; 
    background-color: rgba(20, 20, 20, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    font-size: 1.8vw;
    padding: 20px;
    border-radius: 10px;
    overflow-y: visible;
    margin-top: 30px; 
}

@media (max-width: 950px) {
    .centered-text1 {
        width: 80vw;
        font-size: 5vw;
        padding: 15px;
        margin-top: 20px;
    }
    body {
        overflow-y: auto !important;
        height: auto;
    }
    .centered-text1 li {
        font-size: 5vw !important;
    }
}

.centered-text1 ul {
    list-style-type: none;
    padding: 0;
}

.centered-text1 li {
    padding: 5px 0;
    font-size: 1.5vw;
}
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.bottom-text {
    width: 100vw;
    height: 3vw;
    background-color: rgba(43, 49, 56, 0.747);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5vw;  
    text-align: center;
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}
    @media (max-width: 768px) {
        .bottom-text {
            font-size: 3vw; 
            height: 5vw;
    }
}