html {
  --mtc: #972144; /*Main text color*/
  --stc: #751A35; /*Secondary text color*/
  --ttc: #FFFFFF; /*Third text color*/
  --cbc: rgba(0,0,0,50%); /*Content background color*/

  --nbbfc: #0A0104; /*Navbar background fade color*/
  --nbulc: var(--mtc); /*Navbar underline color*/

  --ftc: #FFFFFF; /*Footer text color*/
  --fstc: var(--mtc); /*Footer Secondary color*/
  --ftlc: var(--mtc)); /*Footer top line color*/
  --fbc: rgba(0,0,0,75%); /*Footer background color*/

  --sbbc: #330815; /*Scrollbar background color*/
  --sbtc: var(--mtc); /*Scrollbar thumb color*/
  --sbthc: var(--stc); /*Scrollbar thumb hover color*/

  height: 100%;
}

* {
  box-sizing: border-box;
}

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;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--stc);
}

h3 {
  font-size: 1.5rem;
  color: var(--stc);
  padding-bottom: 1.4rem;
}

.justify_text {
  text-align: justify;
}

.desktop_view a, .mobile_view a {
  color: var(--ttc);
  font-weight: bold;
  transition: font-size 0.5s;
}

.desktop_view {
  display: block;
}

.mobile_contents {
  background: var(--cbc);
}

.mobile_view {
  display: none;
  text-align: center;
}

.mobile_view h1 {
  color: var(--ttc);
  text-align: center;
}

.row {
  color: var(--ttc);
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.column {
  background: var(--cbc);
  float: left;
  text-align: center;
  width: 50%;
  padding: 1rem;
}

.column a:hover {
  font-size: 140%;
}

.concert_list_title {
  font-size: 210%;
  padding-top: 20px;
  padding-bottom: 10px;
}

.concert_dates {
  line-height: 0;
  font-size: 120%;
}

.extra_padding {
  padding-top: 5rem;
}

.extra_margin {
  margin-top: 5rem;
}

@media screen and (min-width: 1920px) {
  .concerts {
    min-width: 65%;
    min-height: 600px;
  }
}

@media screen and (max-width: 1200px) {
  .concerts {
    max-width: 65%;
    max-height: 200px;
  }
}

@media screen and (max-width: 900px) {
  .desktop_view {
    display: none;
  }

  .mobile_view {
    display: block;
  }

  .justify_text {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@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%;
  }
}
