@font-face {
  font-family: "OpenSans-Light";
  src: url("/app/fonts/OpenSans/OpenSans-Light.ttf");
}

@font-face {
  font-family: "OpenSans-Regular";
  src: url("/app/fonts/OpenSans/OpenSans-Regular.ttf");
}

@font-face {
  font-family: "OpenSans-Bold";
  src: url("/app/fonts/OpenSans/OpenSans-Bold.ttf");
}

@font-face {
  font-family: "Righteous-Regular";
  src: url("/app/fonts/Righteous/Righteous-Regular.ttf");
}

*,
::before,
::after {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  cursor: pointer;
  width: 5px;
  border-left: 1px solid #e6ecf8;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}

.initial-loading-screen {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.initial-loading-screen img {
  height: 20%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "OpenSans-Regular", Arial, sans-serif;
}

#navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: top 0.4s;
}

#navbar .content {
  display: flex;
  height: 100%;
}

#navbar .logo {
  display: flex;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

#navbar .menu {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

#navbar .menu a {
  color: black;
  text-decoration: none;
  margin-right: 10px;
  cursor: pointer;
}

#navbar .content img {
  height: 100%;
  max-width: 100%;
}

.extraspace {
  height: 100px;
}

section#avatar {
  text-align: center;
}

section#avatar > .section-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

section#avatar .avatar-heading h1 {
  font-family: "Righteous-Regular";
  font-weight: 300;
}

section#intro,
section#project,
section#contact {
  text-align: center;
}

section#intro > .section-container,
section#project > .section-container,
section#contact > .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section#intro .intro-heading h1,
section#project .project-heading h1,
section#contact .contact-heading h1 {
  font-family: "Righteous-Regular";
  font-weight: 300;
  margin-bottom: 1.5rem;
}

section#intro .intro-body h3,
section#project .project-body h3 {
  font-family: "OpenSans-Light";
  font-weight: 500;
}

section#job,
section#repos {
  margin-top: -15vh;
  height: auto;
}

section#job .grid .column .content {
  padding: 3.5rem;
}

section#job .box .grid i {
  font-size: 50px;
}

section#job .box .grid .content .job-title {
  font-family: "Righteous-Regular";
  font-weight: 100;
  margin-top: 2rem;
}

section#job .box .grid .content .job-description {
  margin-top: 4rem;
}

section#job .box .grid .content > .tools {
  line-height: 2;
}

section#repos .section-container {
  padding-bottom: 50px;
}

section#repos .columns {
  justify-content: center;
}

section#repos .column {
  padding: 0 10px;
}

section#repos .box .box-body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 35px;
  cursor: pointer;
  text-align: center;
}

section#repos .box .box-body.hover::after {
  content: "View Repository";
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.95);
  opacity: 1;
  transition: opacity 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.9);
  box-sizing: content-box;
  border-radius: 5px;
  animation: hover-animation ease-out 0.2s;
}

section#repos .box .box-body .repos-title {
  font-family: "Righteous-Regular";
  font-weight: 100;
}

section#repos .box .box-body .repos-description {
  margin-top: 2rem;
}

section#repos .box .box-body .repos-info {
  display: flex;
  position: absolute;
  bottom: 5;
  right: 5;
  z-index: 2;
}

section#repos .box .box-body.hover .repos-info {
  color: white;
}

section#repos .box .box-body.hover .repos-info img {
  filter: invert(100%);
}

section#repos .box .box-body .repos-info > div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

section#repos .box .box-body .repos-info > div img {
  width: 24px;
  margin-right: 5px;
}

section#contact .section-container {
  position: relative;
}

section#contact .social-icons > a {
  transition: background-color 0.3s;
  cursor: pointer;
  margin: 0 10px;
  text-decoration: none;
  color: white;
}

section#contact .social-icons > a:hover {
  border-color: white;
  background-color: white;
}

section#contact .copyright {
  font-family: "OpenSans-Light";
  position: absolute;
  bottom: 10;
}

/* ul {
  margin-top: 0;
  list-style-type: none;
}

li {
  display: table;
  height: 40px;
}

li div {
  display: table-cell;
  vertical-align: middle;
} */

@keyframes hover-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
