 body {
    font-family: Arial, sans-serif;
   background-image: url('images/bg-7.png');
    background-size:cover; /* or 'contain' based on your preference */
    background-repeat: no-repeat;
}
.menu {
    text-align: center;
      
}
/* Center the menu container horizontally */
.menu-container {
    display: flex;
    justify-content: center;
    align-items: top;
    height: 100vh; /* Optional: Makes the container full height of the viewport */
  
      
}
.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background-color: #6BBDC0;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .button {
        padding: 8px 16px;
        margin: 5px;
    }
}
/* Add this to your CSS file or within a <style> tag in your HTML */
/* Adjust styles for smaller screens (e.g., mobile devices) */
@media screen and (max-width: 600px) {
    .button {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}
/* Adjust styles for smaller screens (e.g., mobile devices) */
@media screen and (max-width: 480px) {
    .button {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}
/* Styles for screens up to 768px */
@media screen and (max-width: 768px) {
    .button {
        padding: 8px 16px;
        margin: 5px;
    }
}

/* Styles for screens up to 600px */
@media screen and (max-width: 600px) {
    .button {
        display: block;
        width: 70%;
        margin: 5px 0;
    }
    /* Add additional styles as needed for smaller screens */
}/* Styles for screens up to 768px */
@media screen and (max-width: 480px) {
    .button {
        padding: 8px 16px;
        margin: 5px;
    }
}

/* Styles for screens up to 600px */
@media screen and (max-width: 480px) {
    .button {
        display: block;
        width: 70%;
        margin: 5px 0;
    }
    /* Add additional styles as needed for smaller screens */
}