body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-image: url(/wallpaper/wallpaper1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.content {
    width: 50vw;
    height: 20vw;
    background-color: rgba(60, 64, 70, 0.664);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2vw;
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
}
@media (max-width: 767px) and (orientation: landscape) {
    body {
        overflow: auto; 
    }
}
    @media (max-width: 767px) {
        .content {
            width: 70vw;
            height: 40vw;
            background-color: rgba(60, 64, 70, 0.664);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 4vw;
            text-align: center;
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -40%);
            text-align: center;
        }
    }
    @media (max-width: 767px) and (orientation: landscape) {
        .content {
            width: 70vw;
            height: 20vw;
            background-color: rgba(60, 64, 70, 0.664);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 3vw;
            text-align: center;
            position: absolute;
            top: 60%;
            left: 50%;
            transform: translate(-50%, -40%);
            text-align: center;
        }
        }
        @media (max-width: 950px) and (orientation: landscape) {
            .content {
                width: 70vw;
                height: 15vw;
                background-color: rgba(60, 64, 70, 0.664);
                display: flex;
                justify-content: center;
                align-items: center;
                color: white;
                font-size: 3vw;
                text-align: center;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -40%);
                text-align: center;
            }
            }
        
.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;
}
.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: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}
    @media (max-width: 768px) {
        .bottom-text {
            font-size: 3vw; 
            height: 5vw;
    }
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}