/* FOOTER SECTION */

#footerarea {
background-color: rgb(189, 182, 244);
height: 500px;
width: 100%;

}

.footerlist {
  display: flex;
  margin-left: 20%;
  padding-top: 150px;
  font-family: monospace;
  font-size: 1.2rem;
  color: rgb(8, 8, 247);
  text-align: center;
  
}




a {
  text-decoration: none;
  color: rgb(8, 8, 247);
  
}



  
.FootNote{
  font-size: 1.2rem;
  color:  rgb(8, 8, 247);
  font-family: monospace;
  padding-top: 100px;
  margin-left: 10%;
  text-align: center;
  line-height: 40px;
}

.Footgroup {
  padding-top: 80px;
}


#Mobilefooterarea {
  display: none;
}


/* MOBILE VERSION SECTION */

@media only screen and (max-width: 767px) {

/*...mobile browser footer*/

#footerarea {
  display: none; 
}


#Mobilefooterarea {
  width: 100%;
  display: block;
  height: auto;
  background-color: rgb(189, 182, 244);
  text-align: center;
  border-radius: 5px;
  margin-top: 10%;
  padding-bottom: 2%;
}

.footerlist {
  display: flex;
  margin: 4%;
  padding-top: 150px;
  font-family: monospace;
  font-size: 1.2rem;
  color: rgb(8, 8, 247);
  text-align: center;
  
}




a {
  text-decoration: none;
  color: rgb(8, 8, 247);
  
}

  
.FootNote{
  font-size: 1rem;
  color:  rgb(8, 8, 247);
  font-family: monospace;
  padding-top: 40px;
  margin-left: 10%;
  text-align: center;
  line-height: 40px;
}

.Footgroup {
  padding-top: 80px;
}


}