body {
    margin: 0;
}

 header {
  background-image: url(Images/stripes.png);
  background-size: cover;
  background-position: center;
  height: auto;
 }

/* Navigation Bar */

nav {
    background-color: #333;
    height: 50px;
    overflow: hidden;
    border-width:1px 0;
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
}

nav ul {
    list-style: none;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 0; /* Set the right margin to 0 */
}

nav a {
    display: inline-block;
    padding: 0px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 50px;
    padding: 0 10px; /* Add padding to the left and right */
    width: 100%; /* Set the width to 100% */
    text-align: center; /* Center the link text */
    transition: all 0.2s ease-in-out;
}


nav a:hover {
    
    background-color: #4d4d4d;
    transform: scale(1.1); /* Increase the size of the hovered link */
}

@media (min-width: 768px) {
    nav a {
      width: auto; /* Set the width to auto for larger screens */
    }
}

  .social-links {
    position: absolute;
    display: flex;
    align-items: center;
    padding: 10px 10px;
  }
  
  .social-links a {
    margin-right: 10px;
    font-size: 24px;
    color: #ffffff;
  }

  .social-links img {
    width: 30px;
    height: 30px;
  }

		/* Slideshow Styles */
		* {box-sizing: border-box;}
		body {font-family: Verdana, sans-serif;}
		.mySlides {display: none;}
		img {vertical-align: middle;}

		/* Slideshow container */
		.slideshow-container {
		position: relative;
		margin: auto;
		}

		/* Number text (1/3 etc) */
		.numbertext {
		color: #f2f2f2;
		font-size: 12px;
		padding: 8px 12px;
		position: absolute;
		top: 0;
		}

    /* Fading animation */
    .fade {
      animation-name: fade;
      animation-duration: 1.5s;
    }

    @keyframes fade {
      from {opacity: .4} 
      to {opacity: 1}
    }

    /* On smaller screens, decrease text size */
    @media only screen and (max-width: 300px) {
      .text {font-size: 11px}
    }
  /* End of Slideshow Styles */

  /* Main Content */
  .main-content {
    padding-top: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  
  .row {
    display: flex;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  
  .column {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }