/* BASIC STYLING */

  .heading {
    background-color:#000;
    width: 100%;
    height: 160px;
    font-family: "Domine", serif;
    font-size: clamp(20px 2vh 30px);
    /* font-optical-sizing: auto; */
  }

  .heading-red-line {
    background-color:red;
    width: 100%;
    height: 10px;  
  }

  .container1 {
    background-color: silver;
    width:100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
  }

  .container1 .heading-bottom-left {
    flex-shrink: 1;
    flex-grow: 0;
    flex: 1.7;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2vh;
    align-content: end;
    padding-right: 20px;
    text-align: right;
  }

  .container1 .title {
    flex-shrink: 1;
    flex-grow: 0;
    flex: 3;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 4vh;
    text-align: center;
    align-content: top;
    padding-top: 10px;
}

  .container1 .heading-bottom-right {
    flex-shrink: 1;
    flex-grow: 0;
    flex: 1.7;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2vh;
    align-content: end;
    padding-left: 20px;
  }

  h1 {
    color: white;
    text-align: center;
    font-family: "Domine";
    font-size: clamp(10px, 8vh, 60px);
    padding: 20px;
  }

  .legal-container {
    /* background-color: brown; */
    width: 50%;
    margin: 0 auto;

  }

  .underline {
    text-decoration: underline;
  }

  h2 {
    text-align: center;
    font-family: "Domine";
    font-size: 27.5px;
    font-optical-sizing: auto;
    padding: 10px;

  }

  ul {
    list-style-type: square;
    font-family: "Domine";
    font-size: 22px;
    font-optical-sizing: auto;
    line-height: 175%;
    margin-bottom: 20px;
  }

  .one {
    color: #fff;
    text-align: center;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 20px;
  }

  .container {
    /* border: 6px solid #000;
    background-color:dodgerblue; */
    display: inline-flex;
    width: auto;
    justify-content: center;
  }

  .image {
    /* border: 4px solid rgb(33, 235, 235);
    background-color: rgb(160, 122, 169); */
    padding: 1%;
}

  .text {
    /* border: 4px solid rgb(232, 156, 13);
    background-color: rgb(39, 221, 157); */
    max-width: 20%;
    min-width: 300px;
    padding: 1%;
    font-family: "Domine", serif;
    font-size: 18px;
    overflow: hidden;
    text-align: justify;
  }

  footer {
    background-color:black;
    display: flex;
    flex-direction: column;
    width: 100%;
    bottom: 0;                      /* This Propertie Puts the Footer at the Bottom of the Page*/
    font-family: "Domine", serif;
    font-size: 16px;
    color:white;
    line-height: 1.2;
    align-items: center;
  }
  
  .redline {
    background-color: red;
    width: 100%;
    height: 10px;
  }
  
  .urls {
    /* background-color: burlywood; */
    width: 100%;
    height:20%;
    padding: 1%;
    font-family: "Domine", serif;
    text-align: center;
  }
  
  .logo {
    /* background-color: darkolivegreen; */
    padding: 0%;
    display: flex;
    justify-content: center;
  }
  
  .copyright {
    /* border-top: 1px solid gray; */
    padding: 1%;
    text-align: center;
    font-family: "Domine", serif;
    font-size: 12px;
  }
  
  a {
    color:white;
    text-decoration: underline;
    cursor: pointer;
  }  
  
  a:visited {
    color:blue;
  }
  
  a:hover {
    color:aqua;
  }
  
  a:active {
    color: red;
  }

/* SECOND HYPERLINK STYLING ON THE SAME PAGE */

  a.class2:link {
    color: blue;
  }

  a.class2:hover {
    color:aqua;
  }

/* MOBILE BASIC STYLING */

@media only screen and (max-width:1000px) {

  .container1 {
    background-color: silver;
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
  }
  
  .container1 .heading-bottom-left {
    /* background-color: darkolivegreen; */
    order: 2;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2vh;
    text-align: center;
    align-content: center;
    padding-left: 35px;
  }

  .container1 .title {
    /* background-color: cadetblue; */
    order: 1;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 4vh;
    text-align: center;
    align-content: center;
    padding-top: 10px;
  }
  
  .container1 .heading-bottom-right {
    /* background-color:chocolate; */
    order: 3;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2vh;
    text-align: center;
    align-content: center; 
  }
}

@media only screen and (max-width:1200px) {
  
  .container1 {
    background-color: silver;
    width: 100%;
    height: 190px;
    display: flex;
    flex-direction: column;
  }
    
  .container1 .heading-bottom-left {
    /* background-color: darkolivegreen; */
    order: 2;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 1.5vh;
    text-align: center;
    align-content: center;
    /* padding-left: 35px; */
  }  
  
  .container1 .title {
    /* background-color: cadetblue; */
    order: 1;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2vh;
    text-align: center;
    align-content: center;
    padding-top: 10px;
    padding: 1%;
  }

  .container1 .heading-bottom-right {
    /* background-color:chocolate; */
    order: 3;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 1.5vh;
    text-align: center;
    align-content: center;
    padding: 1%;
  }
}

@media only screen and (max-width:900px) {

  .container1 {
    background-color: silver;
    width: 100%;
    height: 190px;
    display: flex;
    flex-direction: column;
  }
    
  .container1 .heading-bottom-left {
    /* background-color: darkolivegreen; */
    order: 2;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2vh;
    text-align: center;
    align-content: center;
    /* padding-left: 35px; */
  }
  
  .container1 .title {
    /* background-color: cadetblue; */
    order: 1;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 3vh;
    text-align: center;
    align-content: center;
    padding-top: 10px;
  }
    
  .container1 .heading-bottom-right {
    /* background-color:chocolate; */
    order: 3;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2vh;
    text-align: center;
    align-content: center; 
  }
}
  
@media only screen and (max-width:800px) {

  .container1 {
    background-color: silver;
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
  }
    
  .container1 .heading-bottom-left {
    /* background-color: darkolivegreen; */
    order: 2;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2vh;
    text-align: center;
    align-content: center;
    /* padding-left: 35px; */
  }
  
  .container1 .title {
    /* background-color: cadetblue; */
    order: 1;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 3vh;
    text-align: center;
    align-content: center;
    padding-top: 10px;
  }
    
  .container1 .heading-bottom-right {
    /* background-color:chocolate; */
    order: 3;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2vh;
    text-align: center;
    align-content: center; 
  }
}

  @media only screen and (max-width:700px) {

  h1 {
    color: white;
    text-align: center;
    font-family: "Domine", serif;
    font-size: 4vh;
    font-optical-sizing: auto;
    padding: 20px;
  }
    
  .container1 {
    background-color: silver;
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
  }
    
  .container1 .heading-bottom-left {
    /* background-color: darkolivegreen; */
    order: 2;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2vh;
    text-align: center;
    align-content: center;
    padding-left: 35px;
  }
  
    .container1 .title {
      /* background-color: cadetblue; */
      order: 1;
      font-family: "Domine", serif;
      font-optical-sizing: auto;
      font-size: 3vh;
      text-align: center;
      align-content: center;
      padding-top: 10px;
    }
    
    .container1 .heading-bottom-right {
      /* background-color:chocolate; */
      order: 3;
      font-family: "Domine", serif;
      font-optical-sizing: auto;
      font-size: 2vh;
      text-align: center;
      align-content: center; 
    }
  }

@media only screen and (max-width:600px) {

  /* h1 {
    color: #fff;
    text-align: center;
    font-family: "Domine", serif;
    font-size: 4vh;
    font-optical-sizing: auto;
    padding: 20px;
  } */
 
  .container1 {
    background-color: silver;
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
  }
  
  .container1 .heading-bottom-left {
    /* background-color: darkolivegreen; */
    order: 2;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 1.5vh;
    text-align: center;
    align-content: center;
    padding-left: 35px;
  }

  .container1 .title {
    /* background-color: cadetblue; */
    order: 1;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2.5vh;
    text-align: center;
    align-content: center;
    padding-top: 10px;
  }
  
  .container1 .heading-bottom-right {
    /* background-color:chocolate; */
    order: 3;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 1.5vh;
    text-align: center;
    align-content: center; 
  }
}

@media only screen and (max-width:500px) {

  /* h1 {
    color: #fff;
    text-align: center;
    font-family: "Domine", serif;
    font-size: 4vh;
    font-optical-sizing: auto;
    padding: 20px;
  } */
  
  .container1 {
    background-color: silver;
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
  }
  
  .container1 .heading-bottom-left {
    order: 2;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 1.4vh;
    text-align: center;
    padding-left: 35px;
    padding-bottom: 10px;
  }

  .container1 .title {
    order: 1;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2.5vh;
    text-align: center;
    align-content: top;
    padding-top: 10px;
  }
  
  .container1 .heading-bottom-right {
    order: 3;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 1.4vh;
    text-align: center; 
  }
}

@media only screen and (max-width:400px) {

  h1 {
    color: white;
    text-align: center;
    font-family: "Domine", serif;
    font-size: 4.5vh;
    /* font-optical-sizing: auto; */
    padding: 20px;
  }
 
  .container1 {
    background-color: silver;
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
  }
  
  .container1 .heading-bottom-left {
    order: 2;
    font-family: "Domine", serif;
    /* font-optical-sizing: auto; */
    font-size: 1.4vh;
    text-align: center;
    padding-left: 35px;
    padding-bottom: 10px;
  }

  .container1 .title {
    order: 1;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 2.5vh;
    text-align: center;
    align-content: top;
    padding-top: 10px;
  }
  
  .container1 .heading-bottom-right {
    order: 3;
    font-family: "Domine", serif;
    font-optical-sizing: auto;
    font-size: 1.4vh;
    text-align: center; 
  }

  .container {
    /* border: 4px solid #000;
    background-color:dodgerblue; */
    display: inline-flex;
    flex-direction: column-reverse; /*This puts the text on top of the image*/
  }

  .image {
    /* border: 4px solid #f30a0a;
    background-color:deeppink; */
    width: 70%;
    padding-bottom: 10px;
    align-self: center; /*This puts the image in the centre of the Child */
  }

  .text {
   /* border: 4px solid darkkhaki;
   background-color: chartreuse; */
   max-width: 581px;
   justify-content: center;
   font-family: "Domine", serif;
   font-size: 14px;
   text-align: justify;
  }

  .legal-container {
    /* background-color: brown; */
    width: 85%;
    margin: 0 auto;
  }
}

/* THIS IS FOR THE IPHONE 13; 14 and 15 */

@media screen and (min-aspect-ratio: 2.164/1) {
  
  .container {
    min-height: 785px;
    margin-inline: auto;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
  }

  .image {
   /* outline: 4px solid blue; */
   /* background-color: cadetblue; */
   margin-left: 50px;
  }

  .text {
   max-height: 780px;
   margin-right: 50px;
   padding: 1%;
   font-family: "Domine", serif;
   font-size: 14.6px;
   text-align: justify;
  }
}