/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "JUST Sans", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background-image: url("../img/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-position 0.5s;
}

@media (max-width: 800px) {
  body {
    background-position: center right -450px;
  }
}

main {
  display: flex;
  flex-grow: 1;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

#links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 20px;
}

#links .avatar img {
  border-radius: 50rem;
  opacity: 0.7;
}

#links .links-div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background: #c7c8bf;
  padding: 30px 0 30px 0;
  font-size: 0.9375rem;
}

.footer-link {
  font-weight: 100;
}

.copy-border {
  border-top: 2px solid #333333;
}

.copy-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Custom Bootstrap Classes
--------------------------------------------------------------*/

/**
* Width and Heigth
*/

/**
* Text
*/

.text-justify {
  text-align: justify;
}

/**
* Background
*/

/**
* Buttons
*/

/**
* Responsive Media Queries
*/

/* xxl */
@media (max-width: 1400px) {
}

/* xl */
@media (max-width: 1200px) {
}

/* lg */
@media (min-width: 992px) {
  .border-lg-0 {
    border: 0 !important;
  }
}

/* sm */
@media (max-width: 556px) {
  .w-sm-100 {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/JUST-Sans-ExBold.woff") format("woff"),
    url("../fonts/JUST-Sans-ExBold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Bold.woff") format("woff"),
    url("../fonts/JUST-Sans-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/JUST-Sans-SemiBold.woff") format("woff"),
    url("../fonts/JUST-Sans-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Medium.woff") format("woff"),
    url("../fonts/JUST-Sans-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Regular.woff") format("woff"),
    url("../fonts/JUST-Sans-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Light.woff") format("woff"),
    url("../fonts/JUST-Sans-Light.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/JUST-Sans-ExLight.woff") format("woff"),
    url("../fonts/JUST-Sans-ExLight.woff2") format("woff2");
}
