@import url("https://fonts.googleapis.com/css2?family=Amatic+SC&family=Anonymous+Pro&family=Caveat:wght@500&family=Comfortaa:wght@500&family=Dancing+Script&family=Fascinate&family=Fuzzy+Bubbles&family=Kanit:wght@200&family=Klee+One&family=Labrada:wght@300&family=Lato:wght@400&family=Lobster&family=Merriweather:wght@300&family=Nunito:wght@300&family=Pacifico&family=Poppins:wght@300&family=Roboto+Condensed:wght@300&family=Satisfy&family=Titillium+Web:wght@300&family=Ubuntu&display=swap");
:root {
  --main-fg-color: white;
  --main-fg-hover: greenyellow;
  --main-bg-color: rgb(10, 40, 50);
  --main-navbar-color: rgba(2, 11, 36, 0.95);
  --main--box-shadow: greenyellow;
  --main-font-family: Merriweather;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--main-font-family);
  /* background-color: var(--main-bg-color); */
  background-image: url(images/portfolio-bg3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.fg-span {
  color: var(--main-fg-color);
}

.custom-bg {
  background: var(--main-bg-color);
  border: 0px solid var(--main-bg-color);
  border-left: 2px solid white;
  border-radius: 0;
}

.navbar {
  background: #333;
  background-position: center;
  background-size: cover;
  /* box-shadow: 1px 1px 5px var(--main--box-shadow); */
}

.nav-link {
  color: var(--main-fg-color);
  font-size: 18px;
  letter-spacing: 1px;
  margin-right: 10px;
}

.nav-item a:hover {
  transition: all 0.2s ease;
  color: var(--main-fg-hover);
  text-decoration: underline 5px;
  text-underline-position: under;
  text-underline-offset: 23px;
}

#nav-btn {
  font-size: 30px;
}

#nav-btn i {
  border: 0px;
}

.my-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}

.my-pic img {
  width: 50%;
  border-radius: 50%;
  background-size: cover;
  box-shadow: 1px 1px 10px var(--main--box-shadow);
}

#introduction {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.my-text {
  color: var(--main-fg-color);
  font-weight: 400;
  font-size: 18px;
  padding: 20px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  /* background: rgb(0, 0, 0, 0.5); */
  /* box-shadow: 1px 1px 10px var(--main--box-shadow); */
}

.my-text a {
  font-size: 25px;
  text-decoration: none;
  color: var(--main-fg-color);
  margin-right: 10px;
  border-radius: 20%;
  /* box-shadow: 1px 1px 5px var(--main--box-shadow); */
}

.my-text a:hover {
  color: var(--main-fg-hover);
  transition: all 0.3s ease;
}
.custom-text-sm {
  font-size: 16px;
  color: var(--main-fg-color);
}
.custom-text-lg {
  font-size: 18px;
  color: var(--main-fg-color);
}
.custom-text-xl {
  font-size: 24px;
}
.custom-brand-logo {
  height: 5rem;
  width: 5rem;
  padding: 5px;
  border-radius: 5px;
  background-color: rgb(255, 255, 255, 0.9);
  box-shadow: 1px 1px 5px var(--main--box-shadow);
}
.custom-brand-name {
  font-weight: bold;
  font-family: var(--main-font-family);
  letter-spacing: 2px;
}
.custom-btn {
  border: 2px solid var(--main-fg-color);
  background-color: var(--main-fg-color);
  color: var(--main-bg-color);
  font-weight: bold;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 5px;
}
.custom-btn:hover {
  transition: all 0.5s ease-in-out;
  background-color: rgb(255, 255, 255, 0.1);
  color: var(--main-fg-color);
}
.custom-bg-transparent {
  background-color: rgb(0, 0, 0, 0.2);
  box-shadow: 1px 1px 5px var(--main--box-shadow);
}

#profile img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

footer {
  height: 10vh;
  padding-top: 15px;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-logo {
  height: 5rem;
  width: 5rem;
  margin: 10px;
  padding: 5px;
  border-radius: 5px;
  background-color: rgb(255, 255, 255, 0.9);
  box-shadow: 1px 1px 5px var(--main--box-shadow);
}

.profile-logo {
  height: 5rem;
  width: 5rem;
  margin: 2px;
  padding: 5px;
  border-radius: 5px;
  background-color: rgb(255, 255, 255, 0.9);
  box-shadow: 1px 1px 5px var(--main--box-shadow);
}

.about-info {
  width: 70%;
}

#auto-type {
  color: var(--main--box-shadow);
}

@media screen and (max-width: 1000px) {
  #introduction {
    padding: 1rem;
    height: 150%;
  }

  #introduction .my-text {
    font-size: 16px;
  }

  .my-pic {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .my-text {
    padding: 10px;
  }

  .my-btn {
    justify-content: center;
    margin-right: 0%;
    top: 15vh;
  }

  .my-btn {
    margin-top: 2rem;
    font-size: 13px;
  }

  .nav-item a:hover {
    text-decoration: none;
  }

  .education {
    width: 90%;
  }

  .tech-logo {
    height: 2.5rem;
    width: 2.5rem;
    margin: 10px 1px;
  }
  .profile-logo {
    height: 2.5rem;
    width: 2.5rem;
    margin: 2px;
  }

  .custom-text-sm {
    font-size: 10px;
  }
  .custom-text-lg {
    font-size: 14px;
  }
  .custom-text-xl {
    font-size: 20px;
  }
  .custom-brand-logo {
    height: 3.5rem;
    width: 3.5rem;
  }
  .about-info {
    width: 90%;
  }
}
