body {
  font-family: "Share Tech Mono", monospace;
  color: #f2f2f2;
  background-color: #2b4162;
  background-image: linear-gradient(315deg, #2b4162 0%, #12100e 74%);
}

a {
  color: #f2f2f2;
}

button {
  color: #f2f2f2;
  padding: 5px 10px;
  font-size: 1.1rem;
  color: white;
  background: none;
  border: 1px solid #8218a5;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.5s;
}

button:hover {
  background: linear-gradient(300deg, #8218a5 0%, rgb(69, 46, 92) 54%);
}

a:hover {
  color: #bc82f7;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #f2f2f2;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #222;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
nav {
  color: rgba(255, 255, 255, 1);
  top: 0px;
  display: flex;
  position: fixed;
  height: 56px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  backdrop-filter: blur(3px);
  background-color: rgba(8, 15, 19, 0.7);
  z-index: 10000000;
}

nav p {
  margin: 10px;
  /* color: #bc82f7; */
}

main {
  min-height: calc(100vh - 180px);
}

@media (max-width: 600px) {
  #about .row {
    padding: 20px;
  }
  #about .avatar {
    margin-bottom: 30px;
    max-height: 150px;
    max-width: 150px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;

  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #222;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 5px;
  background: #222;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

section .about {
  height: 100vh;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 8rem;
}
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #f2f2f2;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about img {
  width: 15rem;
  border-radius: 50%;
}

.about .links {
  color: #bc82f7;
}

.about .links-list {
  margin-top: 30px;
}

.about .avatar {
  max-height: 300px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #12100e;
  color: #f2f2f2;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 1.3em;
  font-weight: 700;
  position: relative;

  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #222;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.5s;
}

#footer .social-links a:hover {
  background: #8218a5;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}
