/*div {
  border: 1px solid purple;
}*/


html {
  font-size: 16px;
  /*font-family: 'Butterfly Kids', cursive;*/
  font-family: 'Gloria Hallelujah', cursive;
  /*font-family: 'Shadows Into Light', cursive;
  font-family: 'Permanent Marker', cursive;*/
}

@media only screen and (max-width: 1024px) {
  html {
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
  }
  
  .Title {
    display:none;
  }

}

header {
  display: flex;
  position: fixed;
  width: 100%;
  border-bottom: solid 1px #c6c1c1;
  background-color: white;
  font-size: 2em;
  font-weight: bold;
  justify-content: space-around;  
}

.Names {
  padding: 0.75em
}

.Title {
  padding: 0.75em;
}

#Banner {
  display: flex;
  justify-content: flex-start;
  height: 42.5rem;
  background-image: url("../../resources/images/present2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#MobileBanner {
  display: none;
}

#About {
  height: 20rem;
  padding: 0 5rem 2.5rem 5rem;
  /*border: solid 1px #979797;*/
  border-radius: 4px;
  /*background-color:whitesmoke;*/
  margin: 9em 4em ;
}

#Info {
  width: 30rem;
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: black;
}

#MobileInfo {
  display: none;
}

@media only screen and (max-width: 1024px) {
  #MobileBanner {
    display: flex;
    justify-content: flex-start;
    height: 42.5rem;
    background-image: url("../../resources/images/present2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  #MobileInfo {
    display:flex;
    flex-direction: column;
    width: 100%;
    
  }
  
  #Banner {
    display:none;
  }

  #Info {
    display: none;
  }

}

.Why {
  padding: 8px;
  font-size: 1.5rem;
}

.nextevent {
  display: flex;
  width: 100%;
  border: solid 1px #c6c1c1;
}

#events {
  justify-content: flex-start;
  padding: 1em;
  font-size:1.5em;
  width: 50%;
}

#paypal {
  justify-content: flex-end;
  padding: 1em;
  font-size: 1.5em;
  width: 50%;
  text-align: right;
}

#paypal a {
  text-decoration: none;
  padding-left: 0.25em;
}

.presents {
  display: flex;
  width: 100%;
  background-color: white;
}

.images {
  width: 70%;
  height: 50rem;
  background-image: url("../../resources/images/Fortplus-Escape-Climbing-Frame-2_xl.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.detail {
  width: 30%
}

.detail p {
  padding-top:2em;
  font-size: 1.5em;
}

#MobileImage {
  display: none;
}

#mobileimagelocation {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .nextevent {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: solid 2px black;
    border-bottom:  solid 2px black;
    margin: 2em 0 1em 0; 
  }

  #events {
    width: auto;
    font-size: 2em;
    text-align: center;
  }

  #paypal {
    width: auto;
    font-size: 2em;
    text-align: center;
  }

  .images {
    display: none;
  }

  .presents {
    display: flex;
    flex-direction: column;
  }

  .detail {
    width: 100%;
  }

  #MobileImage {
    display: flex;
    width: 100%;
    height: 45em;
    background-image: url("../../resources/images/Fortplus-Escape-Climbing-Frame-2_xl.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  #imagelocation {
    display: none;
  }

  #mobileimagelocation {
    display: initial;
  }

}