html {
  --mtc: #C0AB21; /*Main text color*/
  --stc: #9D8C1B; /*Secondary text color*/
  --ttc: #FFFFFF; /*Third text color*/
  --cbc: rgba(0,0,0,50%); /*Content background color*/

  --nbbfc: #020200; /*Navbar background fade color*/
  --nbulc: var(--mtc); /*Navbar underline color*/

  --sbbc: #574E0F; /*Scrollbar background color*/
  --sbtc: var(--mtc); /*Scrollbar thumb color*/
  --sbthc: var(--stc); /*Scrollbar thumb hover color*/

  height: 100%;
}

body {
  height: 100%;
  background-image: linear-gradient(-45deg, var(--mtc), var(--sbbc), var(--mtc));
  background-size: 300% 300%;
  animation: szineshatter 25s infinite, transitionin 0.80s;
}

.jump_to_contents {
  display: block;
}

.normal_view {
  display: block;
}

.main_title_background {
  background: var(--cbc);
}

.main_title h1 {
  background: rgba(0,0,0,0);
  padding-bottom: 0.5rem;
}

.main_title h2 {
  display: inline;
  color: var(--ttc);
  padding-left: 1rem;
  padding-right: 1rem;
}

.main_title a {
  transition: font-size 0.5s;
}

.main_title a:hover {
  font-size: 150%;
}

.content {
  color: var(--stc);
  background: var(--cbc);
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 5rem;
  width: 75%;
  margin-left: 12.5%;
  border-radius: 2.5rem;
}

.content h1 {
  color: var(--ttc);
}

.content h2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.column {
  background: var(--cbc);
  color: var(--stc);
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 5rem;
  float: left;
  width: 33.333333333333333333%;
}

.column h1 {
  color: var(--ttc);
}

@media screen and (min-width: 1920px) {
  .normal_view {
    display: none;
  }

  .jump_to_contents {
    display: none;
  }
}

@media screen and (max-width: 1920px) {
  .widescreen_view {
    display: none;
  }

  .jump_to_contents {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  .content {
    border-radius: 0;
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 700px) {
  .main_title h1 {
    font-size: 4rem;
  }
}

@keyframes szineshatter {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}
