body {
    margin: auto;
    padding: 50px;
    color: #000;
    font-family: 'Ubuntu', sans-serif;   
}


/* ---- Set up site grid ---- */
.wrapper {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
        "logo top-title header  "
        "main main main "
        "footer footer footer ";
        grid-gap: 0px;

        padding:0;
        margin-bottom: 0;
}


.logo {
    grid-area: logo;
    padding: 0;
    padding-left: 20px;
    float: left;
    margin-bottom: 0;
}

.top-title {
    grid-area: top-title;
    padding: 0px;
    margin-bottom: 0;
}

.header {
    grid-area: header;
    display: grid;
    width: 100%;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

.main {
    grid-area: main;
    background-image: url(../images/03_desaturated_lightest.jpg);
    background-color: rgba(255,255 ,255 ,.5 );  /* very pale grey */
    border: solid 1px #CCC;
}


.footer {
    grid-area: footer;
    text-align: left;
}


/* ---- End of grid setup ---- */

/* -- img and text alignment & balance */
.imgflex{
    display: flex;

}
.textflex{
    margin-left: 5px; 
    margin-top: 0;
}
/* -000- Area styling -000- */

.box {
    padding: 20px; 
    /* border-radius: 10px; */
    /*background-color: #ddd; */
}


/* -000- End of area styling -000- */

h1, h2, h3, h4 {
    font-family: 'Ubuntu', sans-serif;
}

h1 {
    font-size: 26px;
}
h2 {
    font-size: 36px;
    font-weight: 800;
}
h3{
    font-size: 32px;
}

/* Responsive image rules */
.responsive {
    width: 100%;
    height: auto;
}

/* Div to ensure that content on ifrst page fill vertical space */
.info-text{
    display:flex;
    flex-direction: column;
}

ul.text{
    list-style: disc;
    display: list-item;
    border: none;
    margin-left: 20px;
    /*background colour white*/
}
/* Navigation Links */
a.nav {font-weight: bold;}
a.nav:link, a.nav:visited {color: #AA0000;} /*dark red */
a.nav:hover {color: #604830; text-decoration: none;} /* chocolate brown */

.single-spacing {
    padding: 0;
}

/* links in page */
a {font-weight: bold;}
a:link{color: #AA0000;} /*dark_red */
a:visited{color: #111177;} /* dark blue */
a:hover{color: #000;}    /* Black*/

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  
  /* 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: white;
    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;
  }
  
  /* 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);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  /* Login style */
  .form{
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    }
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
    .slprev, .slnext {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      z-index: 1;
      cursor: pointer;
      position: absolute;
      top: 0;
      width: auto;
      padding-left: 150px;
      top: 50%;
      margin-top: -22px;
      color: #fff;
      font-weight: bold;
      font-size: 18px;
      transition: background-color 0.6s ease;
      border-radius: 0 3px 3px 0;
      padding-top: 240px;
  }
  .slnext{
    right: 0;
    padding-right: 220px;
  }
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
@media (max-width: 767px) 
{
    .wrapper {
        display: grid;
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
            "logo top-title "
            "header header"
            "main main"
            "footer footer";
            grid-gap: 0px;
        
        

        


    }
}


















