@import url(https://fonts.googleapis.com/css?family=Lato);
/* @import url('https://fonts.googleapis.com/css2?family=Comfortaa&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,300&display=swap");
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;700;800&display=swap");

html {
  scroll-behavior: smooth;
}

* {
  margin-right: 4px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #141414;
}

::-webkit-scrollbar-thumb {
  background-color: #302f2f;
  border-radius: 10px;
}

body {
  /* background-color: #D2E0FB; */
  background-color: #ffeef4;
  background: #000;
  max-width: 100%;
}

h1 {
  text-align: center;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  color: #fff;
  /* -webkit-text-stroke: 2px #fffba4; */
  margin-top: 10px;
  margin-bottom: 5px;
  animation: changeStrokeColor 8s infinite;
  font-weight: normal;

}

.container {
  display: grid;
  place-items: center;
  padding: 12px;
  gap: 8px;
}

.Card {
  display: inline-block;
  font-family: "Open Sans", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  min-width: 215x;
  max-width: 315px;
  width: 100%;
  color: #fff;
  text-align: center;
  line-height: 1.4em;
  background-color: #141414;
  margin-top: 0;
  border-top-right-radius: 10%;
  margin-left: 2.5%;
}

.Card * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.Card .profile-image {
  padding: 10% 8% 0;
}

.Card .profile-image img {
  max-width: 100%;
  vertical-align: top;
  position: relative;
  border-radius: 50%;
  max-width: 40%;
}

.Card:hover .profile-image img {
  transform: scale(1.1);
  /* Scale up the image on hover */
  transition: transform 0.3s ease;
}

.Card figcaption {
  padding: 2% 10% 10%;
}

.Card h3 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin: 3px 0;
}

.Role {
  /* font-weight: 400; */
  margin: 0;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 25px;
  margin-top: 5;
  font-weight: normal;
}

.Main {
  font-weight: normal;
  margin: 0;
  text-transform: uppercase;
  color: wheat;
  letter-spacing: 1px;
  margin-bottom: 25px;
  margin-top: 5;
}

.Main:hover {
  color: #fff;
}

.line {
  border-top: 1px solid grey;
  margin-bottom: 20px;
  opacity: 0.5;
  width: 90%;
  margin-left: 13px;
}

.Quote {
  font-family: "Poppins", sans-serif;
}

.Card .icons i {
  color: #999;
  display: inline-block;
  margin-right: 5px;
  font-size: 1.5em;
}

#github:hover {
  color: #fff;
  transform: scale(1.2);
}

#twitter:hover {
  color: #0892e1;
  transform: scale(1.2);
}

#linkedin:hover {
  color: #0177b4;
  transform: scale(1.2);
}

.Card .icons i a {
  text-decoration: none;
}

/* Scroll */

#scrollTop {
  position: fixed;
  background-color: #302f2f;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  display: none;
  place-items: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#scrollTop i {
  display: grid;
  align-items: center;
  margin-left: 5px;
  color: white;
  font-size: 15px;
}

/* footer */

.credit {
  position: relative;
  font-family: "Source Code Pro", monospace;
  color: #fff;
}

@keyframes cardAnimation {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.Card {
  animation: cardAnimation 0.5s ease-in-out;
  animation-fill-mode: both;
  opacity: 0;
  transform: translateY(50px);
}

.Card .icons i {
  transition: color 0.3s ease;
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
  * responsive for larger than 768px screen
  */

@media (min-width: 768px) {
  .container {
    grid-template-columns: 1fr 1fr;
  }
}

/**
  * responsive for larger than 992px screen
  */

@media (min-width: 992px) {
  .container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/**
  * responsive for larger than 1480px screen
  */

@media (min-width: 1280px) {
  .container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/**
  * responsive for larger than 1980px screen
  */

@media (min-width: 1980px) {
  .container {
    grid-template-columns: repeat(5, 1fr);
  }
}