body {
  font-family: "PT Mono", monospace;
  margin: 0 auto;
  background: #28272b;
}
.container-fluid {
  margin: 0;
  padding: 0;
}
.navbar-toggler {
  background-color: #ef7537;
}
.navbar {
  background: #18161d;
}
.navbar a {
  color: #ef7537;
}
.navbar a:hover {
  color: #ffc108;
}
.logo {
  height: 40px;
  width: 90px;
}
.grid {
  display: grid;
}
.grid-3-columns {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  justify-items: center;
}
#certificates {
  color: white;
  padding: 30px 50px;
  margin-top: 70px;
}
#certificates h2 {
  margin-top: 15px !important;
  text-align: center;
}
#certificates img {
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
}
#certificates img:hover {
  transform: scale(1.05);
  opacity: 0.7;
}

#certificates .certify-link {
  color: #ef7537;
  font-weight: bold;
  transition: 200ms all ease-in-out;
}
#certificates .certify-link:hover {
  color: #faad39;
}
.grid-1-columns {
  grid-template-columns: 1fr;
  display: grid;
  justify-items: center;
  padding: 20px;
}

.small-image {
  width: 380px;
  height: auto;
  border-radius: 10px;
}
.achievements-section h2 {
  text-align: center;
  font-size: 30px bold;
  color: white;
}
.cv {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}
.cv a {
  color: #ef7537;
  text-decoration: none;
}
.cv a:hover {
  color: #faad39;
}
.cv span {
  margin-left: 20px;
}
footer {
  padding: 30px 50px;
  margin: 0 auto;
  background: #18161d;
}
footer .email a {
  line-height: 1.5;
  text-decoration: none;
  font-size: 30px;
  font-weight: bolder;
  color: #ef7537;
  transition: all 200ms ease-in-out;
}
footer .email a:hover {
  color: #faad39;
  text-shadow: 2px 2px 6px rgba(240, 237, 233, 0.776);
}
.contact-links a {
  margin-left: 30px;
  font-size: 40px;
  color: #ef7537;
  text-decoration: none;
}
.contact-links a:hover {
  color: #faad39;
  text-shadow: 2px 2px 6px rgba(240, 237, 233, 0.776);
}
footer p {
  text-align: center;
  color: #ef7537;
  font-weight: bold;
}
footer span a {
  color: #ef7537;
  transition: all 200ms ease-in-out;
}
footer span a:hover {
  color: #faad39;
}
@media (max-width: 960px) {
  .grid-3-columns {
    grid-template-columns: 1fr;
  }
  #certificates {
    padding: 10px 20px;
  }

  .small-image {
    max-width: 100%;
    height: auto;
  }

  .cv {
    font-size: 20px;
  }
  footer .email a {
    font-size: 20px;
  }
  .contact-links a {
    font-size: 25px;
  }
  footer p {
    font-size: 14px;
  }
}
