

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column; 

    background-image: url('/images/background_dots.jpg'); /* Replace with your image URL */
    background-size: cover; /* Cover the entire body with the image */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    /* color: white; /* Optional: sets text color for contrast */

    /* background-image: url('/images/background_dots.jpg');  
  background-repeat: repeat; 
  background-size: auto; */
}


.background-div {
    width: 100%; /* Set width as needed */
    height: 550px; /* Set height as needed */
    background-image: url('/images/background_dots.jpg'); /* Path to your image */
    background-repeat: repeat; /* Ensures the image repeats both horizontally and vertically */
    background-size: 500px; /* Keeps the original size of the image */
    background-position: top left; /* Starting position of the first tile */
  }

  

/* Desktop-specific styles */
@media (min-width: 700px) {
    body {
      width: 700px; /* Fixed width for desktop */
      margin: 0 auto; /* Center the page horizontally */
    }
  }


.content {
    flex-grow: 1;
    padding: 0px;
    overflow-y: auto;
}

.spacer {
    height: 30px; /* Simulate scrollable content */
}


/* Container for the image to set the max-width */
.image-container {
    width: 95%;  /* Set to 95% of the screen width */
    max-width: 100%;  /* Ensure it doesn't exceed the viewport width */
    margin: 0 auto;  /* Center the container horizontally */
    position: relative;
}

/* Image styles */
img {
    width: 100%;  /* Make the image responsive to screen width */
    height: auto;  /* Maintain the image aspect ratio */
    object-fit: cover;  /* Ensure the image covers the container without clipping */
}


.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #e70cac;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-nav button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.bottom-nav button:hover {
    color: #00f;
}

.icon {
    font-size: 20px;
}

.carousel-item img {
    width: 700px;
    height: 100%;
    object-fit: cover;
}


.navbar {
    background-color: #333;
}

.navbar-nav .nav-link {
    color: white !important;
}

.navbar-nav .nav-link:hover {
    color: #f0f0f0 !important;
}



  
.navbar-toggler-icon {
    width: 30px;
    height: 25px;
    display: block;
    position: relative;
    background: transparent; /* Make background transparent */
    border: none;
    padding: 0;
  }
  

  
  





        /* Override the color of the previous carousel control (arrow) */
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: red;  /* Set background color to red */
        }

        



/* Style for the hyperlink as a button */
.button-link {
   
    display: inline-block;         /* Makes the link behave like a block element */
    background-color: #e70cac;     /* Hot pink background color */
    color: white;                  /* White text color */
    text-decoration: none;         /* Remove the underline */
    padding: 10px 20px;            /* Add padding inside the button */
    font-size: 16px;               /* Set font size */
    border-radius: 15px;           /* Rounded corners */
    cursor: pointer;              /* Change cursor to pointer on hover */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

/* Hover effect */
.button-link:hover {
    background-color: deeppink;    /* Darker pink background when hovered */
}



/* Style for the hyperlink as a button */
.button-link2 {
    
    display: inline-block;         /* Makes the link behave like a block element */
    background-color: #e70cac;     /* Hot pink background color */
    color: white;                  /* White text color */
    text-decoration: none;         /* Remove the underline */
    padding: 10px 20px;            /* Add padding inside the button */
    font-size: 16px;               /* Set font size */
    border-radius: 15px;           /* Rounded corners */
    cursor: pointer;              /* Change cursor to pointer on hover */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

/* Hover effect */
.button-link2:hover {
    background-color: deeppink;    /* Darker pink background when hovered */
}