@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

body {
  scroll-behavior: smooth;
  margin: 0;
  color: white;
}

.padding-root {
  padding: 1% 15%;
}

.cursor:hover {
  cursor: pointer;
}

.bg-black {
  background-color: black;
}

:root {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --gd-color: #5cd2b9;
  --bg-gradient-h: linear-gradient(
    180deg,
    #1d302c 25%,
    rgb(6, 34, 27) 50%,
    rgb(8, 41, 34) 75%,
    #131d1b 100%
  );
  --bg-gradient-second: linear-gradient(180deg, #131d1b 0%, #0e1413 50%);
}

.bg-gr {
  background: var(--bg-gradient-h);
  min-height: 100vh;
}

main {
  min-height: 95vh;
}

.f-column {
  display: flex;
  flex-direction: column;
}

.f-row {
  display: flex;
  flex-direction: row;
}

.absolute-center {
  justify-content: center;
  align-items: center;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0 !important;
}

a {
  font-weight: 500;
  text-decoration: inherit;
  color: white;
}

a:hover {
  color: var(--border-color-default);
}

h1 {
  font-size: 3em;
  line-height: 1.1;
}

h2 {
  font-size: 2.5em;
  line-height: 1.1;
}

h3 {
  font-size: 2em;
  line-height: 1.1;
}

h4 {
  font-size: 1.5em;
  line-height: 1.1;
}

h5 {
  font-size: 1em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.25s;
}

button:hover {
  border-color: #646cff;
}

.card {
  border: 3px solid var(--gd-color);
  border-radius: 1em;
  background-color: #1d1e22;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
}

button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }

  a:hover {
    color: #747bff;
  }

  button {
    background-color: #f9f9f9;
  }
}

@media screen and (max-width: 480px) {
  .padding-root {
    padding: 5% 2%;
  }
}

@keyframes iconRepoHover {
  from {
    background-color: white;
  }

  to {
    background-color: #4fa895;
  }
}

@keyframes onShowRole {
  from {
    transform: translateY(40%);
    opacity: 0;
  }

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

@keyframes onHideRole {
  from {
    transform: translateY(0%);
    opacity: 1;
  }

  to {
    transform: translateY(-40%);
    opacity: 0;
  }
}
