body {
    background-color: gray;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

div {
    display: flex;
}

.bordertop {
    background-color: white;
    border: 2px ;
    justify-content: center;
    border-radius: 7px;
    margin-bottom: 50px;
    margin-top: 125px;
}

.borders {
    background-color: white;
    flex-direction: column;
    border-radius: 7px;
    padding: 10px;
    margin-bottom: 50px;
}

/* Slideshow container */
.slideshow-container {
    max-width: 10000px;
    position: relative;
    margin: auto;
    background-color: white;
    text-align: center;
    padding: 45px;
    border-radius: 20px;
   justify-content: center;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev {
      left:0;
      border-radius: 0 3px 3px 0;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color:#f2f2f2
  }
  
  /* Caption text */
  .text {
    color: white;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: white;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
      from {opacity: .4}
      to {opacity: 1}
    }

    
    .row {
        text-align: left;
        padding: 20px;
        flex-direction: column;
        
    }

    nav {
      background-color: white;
      padding: 25px;
      border: 2px solid gray ;
      border-style: solid;
      position:fixed;
      top: 0;
      left: 0;
      width:100%;
      transition:0.4s;
      top: 0;
      z-index: 99;
    }
    
    nav a {
      color: black;
      margin: 3px;
      text-decoration: none;
      background-color: lightgray;
      border: 2px solid gray;
      padding: 10px;
      border-radius: 50px;
    }
    img {
      width: 700;
      height: 700;
    }

    .border4 {
      flex-direction: column;
      background-color: white;
      align-items: center;
      width: 200px;
      border-radius: 30px;
      height: 600px;
      margin: auto;
      border: 3px solid gray;
      padding: 10px;
      text-align: center;
    }

    .border5 {
      flex-direction: column;
      background-color: white;
      align-items: center;
      width: 200px;
      border-radius: 30px;
      height: 680px;
      margin: auto;
      border: 3px solid gray;
      padding: 10px;
      text-align: center;
    }

    .rowy {
      flex-direction: row;
    }





