*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  padding: 30px;
}

#f-main-menu,
#f-links,
#f-social {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: auto;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 30px;
  font-size:2.5vmin;
  line-height:1.5rem;
}


#f-events {
  display: flex;
  flex-direction: column;
  width: 360px;
  height: auto;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 30px;
  font-size:2.5vmin;
  line-height:1.5rem;
}

@media screen and (max-width: 676px) {
  #f-main-menu,
  #f-events,
  #f-links,
  #f-social {
    align-items: center;
    margin: 30px 10px 30px 10px;
  }
}

#f-main-menu p,
#f-events p,
#f-links p,
#f-social p {
  color: #FFF;
  font-size:2.9vmin; /* THIS IS FOR FOOTER HEADING SIZE */
  font-weight: 500;

}

@media screen and (max-width: 360px) {
  #f-main-menu p,
  #f-events p,
  #f-links p,
  #f-social p {
    font-size: 17pt;
  }
}

#f-main-menu a,
#f-events a,
#f-links a {
  color: #FFF;
  text-decoration: none;
  line-height:2.1em;
  font-size: 2.2vmin;

 /* THIS IS FOR FOOTER HEADING SIZE */
 
}

#f-main-menu a:hover,
#f-events a:hover,
#f-links a:hover,
#f-social a:hover {
  color: #fff;
  transform: translateX(10px);
}

#f-social a {
  color: #ff8602;
  font-size: 40pt;
}