a,
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: inherit;
  font-weight: inherit;
}

@keyframes pulse-background {
  0% {
    background-color: #10141e;
  }
  16% {
    background-color: #16101e;
  }
  30% {
    background-color: #1a1116;
  }
  50% {
    background-color: #111a11;
  }
  75% {
    background-color: #111a1a;
  }
  100% {
    background-color: #10141e;
  }
}
body {
  color: #fff;
  animation: pulse-background 10s linear infinite;
  height: 100vh;
}

.background-logo-container {
  position: fixed;
  overflow: hidden;
  left: 50%;
  top: -124px;
  transform: translate(-50%, 0);
  z-index: -1;
}

.background-logo {
  width: 1500px;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .background-logo-container {
    left: 8%;
    top: -104px;
  }
  .background-logo {
    width: 975px;
  }
}

.logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centering y-axis */
  align-items: center; /* Centering x-axis */
  padding-top: 90px;
}
.logo {
  width: 89px;
  height: 89px;
}
.header {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centering y-axis */
  align-items: center; /* Centering x-axis */
  margin-top: 70px;
}
@media screen and (max-width: 600px) {
  .header {
    font-size: 48px;
  }
}
@media screen and (max-width: 400px) {
  .header {
    font-size: 38px;
  }
}

.description-container {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centering y-axis */
  align-items: center; /* Centering x-axis */
  margin-bottom: 60px;
}

.description {
  font-family: "Roboto", sans-serif;
  text-align: left;
  max-width: 640px;
  margin: 20px 30px 0 30px;
  line-height: 1.67;
  font-size: 18px;
}

.description a {
  color: #aea4f1;
}

.description a:hover {
  text-decoration: underline;
}


@media screen and (max-width: 640px) {
  .description {
    text-align: center;
  }
}

.bold {
  font-weight: 900;
}

hr.solid {
  max-width: 640px;
  margin: auto;
  height: 1px;
  background-color: #d8d8d8;
  opacity: 0.2;
  border: none;
}

@media screen and (max-width: 670px) {
  hr.solid {
    margin: 0 30px;
  }
}

.position-container {
  display: flex;
  max-width: 640px;
  margin: auto;
  height: 110px;
  align-items: center;
  justify-content: space-between;
}

.position-container:hover {
  color: #aea4f1;
}

.position-container:hover .arrow {
  filter: brightness(1.2);
}

@media screen and (max-width: 670px) {
  .position-container {
    margin: 0 30px;
  }
}

.position-name {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  padding-right: 10px;
}

@media screen and (max-width: 640px) {
  .position-name {
    font-size: 26px;
  }
}

.arrow {
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 640px) {
  .arrow {
    width: 40px;
    height: 40px;
  }
}

.apply-button {
  width: 179px;
  height: 45px;
  padding: 3px 0 4px;
  border-radius: 22.5px;
  background-color: #8f84dc;
  border: none;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 20px;
  margin: 0 auto 90px auto;
  display: block;
}

.apply-button:hover {
  background-color: #afa4ff;
}

.job-description-header {
  font-family: Oswald;
  font-size: 24px;
  margin: 60px auto 0 auto;
  display: block;
  text-align: center;
}

.job-description {
  max-width: 640px;
  margin: 29px auto;
  font-family: Roboto;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.gdpr-container {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centering y-axis */
  align-items: center; /* Centering x-axis */
  margin-bottom: 60px;
}

.gdpr {
  font-family: "Roboto", sans-serif;
  text-align: left;
  max-width: 640px;
  margin: 20px 30px 0 30px;
  line-height: 1.67;
  font-size: 18px;
}

.gdpr ul {
  margin: 0px;
}

.gdpr li {
  margin: 5px 0px 0px 0px;
}

.gdpr-link {
  color: #aea4f1;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Roboto;
  font-size: 14px;
  line-height: 1.5;
  position: fixed;
  bottom: 0;
  right: 0;
  animation: pulse-background 10s linear infinite;
  width: 100%;
  opacity: 0.90;
  text-align: right;
}

.gdpr-link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 640px) {
  .job-description {
    margin: 0 27px;
  }
}

.arrow-back {
  height: 50px;
  width: 50px;
  transform: rotate(180deg);
  position: fixed;
  top: 31px;
  left: 39px;
}

.arrow-back:hover {
  filter: brightness(1.2);
}

.additional-bottom-padding {
  height: 50px;
}
