* {
  margin: 0;
}

body {
  background-color: aliceblue;
  color: rgb(53, 32, 4);
}

h1 {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(2, 2, 41);
  color: aliceblue;
}

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;
}

h2 {
  font-size: xx-large;
  position: relative;
  margin-left: 10px;
  animation-name: h2;
  animation-duration: 4s;
  animation-fill-mode: backwards;
  animation-delay:5s ;
}

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

  100% {
    top: 0px;
  }
}
li{
  font-weight: 800;
  font-size: large;
}

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

}

a {

  color: rgb(255, 255, 255);
  text-decoration: none;
  padding-right: 20px;
}

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;
}

ul {
  line-height: 29px;
}