* {
  margin: 0;
}

body {
  background-color: #12475f;
  color: antiquewhite;
}

h1 {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(2, 2, 41);
  color: aliceblue;
}
/* everything related to contact and nav */

nav,
p {
  padding-top: 50px;
  text-decoration: none;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  background-image: url('olajide.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 150px;
}

#contact {
  margin-top: 30px;
  position: relative;
  animation-name: contact;
  animation-duration: 3s;
  animation-fill-mode: backwards;
  animation-delay: 2s;
  animation-timing-function: linear;

  transition-property: transform;
  transition-duration: 2s;
}

@keyframes contact {
  0% {
    left: -1000px;
    top: 0px;
  }

  100% {
    left: 90px;
  }
}

#contact:hover {
  transform: rotateY(360deg);
}

.contact {
  color: aliceblue;
  font-size: 30px;
  text-align: center;
  margin-top: 25px;
}

.email {
  color: aliceblue;
  font-size: 30px;
  text-align: center;
  margin-top: 25px;
}

.facebook {
  color: aliceblue;
  font-size: 30px;
  text-align: center;
  margin-top: 25px;
}

.instagram {
  color: aliceblue;
  font-size: 30px;
  text-align: center;
  margin-top: 25px;
}

/* ARTICLES */

header {
  font-size: 200%;
  font-weight: bolder;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  margin-top: 15px;
  color: blue;

}

.objectives {
  margin-top: 20px;
  display: flex;
  margin-left: 10px;

}

.mission {
  flex: 1;
  order: 2;
  flex-basis: 10px;
  margin-left: 5px;
}

.vision {
  flex: 1;
  order: 1;
  flex-basis: 109px;
  margin-left: 5px
}


a {
  background-color: red;
  border: red solid;
  padding: 5px;
  border-radius: 20px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-align: center;

}

a:hover {
  color: rgb(33, 20, 220);
}

a:active {
  color: greenyellow;
}

.copy {

  font-weight: bolder;
  margin-top: 12%;
  background-color: grey;
  text-align: center;
  padding: 35px;
  align-self: center;
}

b {
  text-align: center;
  color: red;
  margin-left: 400px;

}

video {
  width: 50%;
  align-self: center;
  border-radius: 20px;
  margin-left: 250px;
  margin-top: 20px;
}

h2 {
  color: brown;
  position: relative;
  animation-name: h2;
  animation-duration: 4s;
  animation-delay: 4s;
  animation-fill-mode: backwards;


}

@keyframes h2{
  0%{bottom: -2000px;}
  100%{bottom: 0;}
}

#mission{
  color: rgb(255, 254, 254);
  position: relative;
  animation-name: mission;
  animation-duration: 4s;
  animation-delay: 4s;
  animation-fill-mode: backwards;

}

#vision{
  color: rgb(255, 254, 254);
  position: relative;
  animation-name: vision;
  animation-duration: 4s;
  animation-delay: 4s;
  animation-fill-mode: backwards;

}

@keyframes mission {
  0%{right: -700px;}
  100%{right: 0;}
}

@keyframes vision {
  0%{left: -700px;}
  100%{left: 0;}
}
.writeupvideo{
  margin-top: 35px;
  margin-left: 60px;
}