* {
  margin: 0;
}

body {
  background-color: aliceblue;
  color: red;
}

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

form {

}

label {
  display: block;
  line-height: 35px;
  text-align: center;
}

input {
  width: 50%;
  text-align: center;
  margin-left: 25%;
}

button {
  display: block;
  text-align: center;
  text-decoration: none;
  font-style: normal;
  margin-left: 45%;
  margin-top: 30px;
}