

body {
    background-image: url("./images/Sanback.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  /* Dimmed overlay for background image */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: -1;
  }
  
  .navbar {
    overflow: hidden;
  }
  .navbar a {
    display: inline-block;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
  }
  .dropdown {
    display: inline-block;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  .dropdown-content a {
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
input{
  width: 50%;
  padding: 10px;
  margin: 10px 0 22px 0;
  margin-left: 350px;
  display: inline-block;
  border: none;
  background: #edeaea;
  }
  hr 
  {
  border: 1px solid #f3f1f1;
  margin-bottom: 5px;
  color: white;
  }
  .registerbutton
  {
  background-color: #29a329;
  color: white;
  padding: 10px 10px;
  margin: 10px 0px;
  border: none;
  cursor: pointer;
  width: 20%;
  text: bold;
  margin-left: 350px;
  }
  span{
     font-size: 20px;
     color: white;
  }
  p{
     text-align: center;
     color: white;
     font-size: 70px;
     margin-bottom: 380px;
  }
  body{
    background-color: #333;
  }
  
  .column {
    width: 100%;
  }
  
 /* CSS for mobile devices */
@media (max-width: 767px) {
  /* CSS rules specific to mobile devices */
}

/* CSS for tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  /* CSS rules specific to tablets */
}

/* CSS for desktops and larger screens */
@media (min-width: 1024px) {
  /* CSS rules specific to desktops and larger screens */
}

  
  .gallery-container {
    text-align: center;
  }
  .gallery-image {
    max-width: 800px;
    max-height: 500px;
  }
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
  }
  
  
  .container1 {
    width: 300px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 100px;
    background-color: white;
    border-radius: 5px;
  }
  
  h2 {
    text-align: center;
  }
  
  input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  button {
    background-color: #4A90E2;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
  }
  
  .warning {
    color: red;
    text-align: center;
    margin-top: 10px;
  }