body{
    background-color: blue;
    max-width: 100%;
    margin-top: 0;
    margin-left: 0;
}

header{
  background-color: purple;
}

h1{
    color: white;
    font-size: 50px;
    display:flex;
    justify-content: center;
    margin-top: 0;
}

h3{
    color: white;
    font-size: 35px;
    display:flex;
    justify-content: center;
}

h4{
  color: white;
  font-size: 15px;
  display:flex;
  justify-content:center;
}

h5{
  color: white;
  font-size: 16px;
  display: flex;
  justify-content: center;
}

footer{
  background-color: white;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.footerContainer{
  width:100%;
}

.socialLogos{
    display:flex;
    justify-content: center;
    width: 100%;
}

.socialLogos a{
  margin: 10px;
  border-radius: 50%;
  padding: 5px;
  background-color: blue;
}


p{
    width: 600px;
    flex: 100px;
    color: white;
    font-size: 20px;
    display:flex;
    justify-content: center;
    padding: 50px;
}

.eventpage ul li p{
    justify-content: center;
    padding: 5px;

}

.cta {
  display: flex;
  padding: 11px 33px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  background: #6225e6;
  transition: 1s;
  box-shadow: 6px 6px 0 black;
  transform: skewX(-15deg);
  border: none;
  cursor: pointer;
}

.cta:focus {
  outline: none;
}

.cta:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 0 #fbc638;
}

.cta .second {
  transition: 0.5s;
  margin-right: 0px;
}

.cta:hover .second {
  transition: 0.5s;
  margin-right: 45px;
}

.span {
  transform: skewX(15deg);
}

.second {
  width: 20px;
  margin-left: 30px;
  position: relative;
  top: 12%;
}

.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta:hover .three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover .one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover .two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: #fbc638;
  }

  100% {
    fill: white;
  }
}
