body {
  background-color: #eefcff !important;
}

.nav-link:hover {
  color: rgb(255, 255, 255) !important;
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

/* welcome section */
#welcome-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0b5ed7;
}
/* end welcome section */

/* projects section */
img {
  display: block;
  width: 100%;
}

.project {
  text-decoration: none;
}

.project-presentation {
  border: solid #0b5ed7 1px;
  padding: 1.5rem;
}

/* end projects section */

/* contact section */
.contact-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 80vh;
  padding: 0 2rem;
  color: #0b5ed7;
}

.contact-links {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 980px;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.contact-details {
  font-weight: 600 !important;
  font-size: 1.5rem !important;
  transition: transform 0.3s ease-out;
  color: #0b5ed7 !important;
}

.contact-details:hover {
  background-color: #1a50a1;
  color: #ffffff !important;
  transform: translateY(8px);
}
/* end contact section */

/* footer */

footer {
  font-weight: 300;
  display: flex;
  justify-content: space-evenly;
  padding: 2rem;
  background: var(--main-gray);
  border-top: 4px solid var(--main-red);
}

footer > p {
  margin: 2rem;
}

footer i {
  vertical-align: middle;
}

@media (max-width: 28.75em) {
  footer {
    flex-direction: column;
    text-align: center;
  }
}

/* end footer */
