* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  --font-family: 'IBM Plex Mono', monospace;
  --line-height: 1.4;
  --text-align: left;
  --color: #010F0C;
  --small-font-size: 0.8rem;
  --italic: italic;
  --highlight: #3b5df5;
  height: 100%;
  width: 100%;
  position: relative;
}

.layout {
  min-height: 100vh;
  background: radial-gradient( white , #3b5df5);
}

h1 {
  padding-bottom: 2vh;
}

a {
  text-decoration: none;
  color: var(--color);
}

a:hover {
  color: var(--highlight);
}

.home {
  width: 15vw;
  padding-top: 1vh;
  padding-bottom: 2vh;
}


img {
  max-width: 100%;
  height: auto;
}

.small {
  font-family: var(--font-family);
  font-size: var(--small-font-size);
}

.italic {
  font-style: var(--italic);
}

/* header */

.header {
  text-align: center;
  padding-top: 2vh;
  margin-bottom: 2vh;
}

.about {
  padding-bottom: 2vh;
}

/* main */

.grid_main_container {
display: grid;
grid-template-columns: 1fr;
font-family: 'IBM Plex Mono', monospace;
}

.grid_gig_container {
display: grid;
grid-template-columns: 12% 13fr 3fr 1fr 1fr;
grid-template-rows: auto;
grid-gap: 2em;
padding-left: 20px;
padding-right: 20px;
border-top: 1px solid #000;
padding-top: 10px;
padding-bottom: 10px;
align-items: baseline;
}

.grid_content_container {
display: none;
grid-template-columns: 12% 9fr 5fr;
grid-template-rows: auto;
grid-gap: 2em;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
align-items: baseline;
line-height: 1.2;
}

.gig_title {
  cursor: pointer;
}

.tickets {
justify-self: center;
background-color: #fff;
padding: 5px;
}

.tickets:hover {
  background-color: #3b5df5;
  color: #fff;
}

.tickets:hover a {
  background-color: #3b5df5;
  color: #fff;
}

.deactivate {
    visibility: hidden;
}

.toggle_button {
  justify-self: right;
  cursor: pointer;
}


/* footer */

.footer  {
  padding-left: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #000;
}

.imprint {
  font-family: var(--font-family);
  position: absolute;
  left: 2vh;
  bottom: 2vh;
  font-size: var(--small-font-size);
}

/* mobile */

@media only screen and (max-width: 768px) {

.body {
  font-size: 0.9rem;
}

.grid_header_container {
  width: 100%;
  grid-template-columns: 1fr;
  padding: 15px 15px 15px 15px;
  row-gap: 30px;
}

.home {
  width: 35vw;
}

.grid_main_container {
  max-width: 100%;
  grid-template-columns: 1fr;
}

.grid_gig_container {
  width: 100%;
  grid-template-columns: 1fr;
  grid-gap: 0.5rem;
  align-items: baseline;
  padding-right: 15px;
  padding-left: 15px;
}

.grid_content_container {
  width: 100%;
  grid-template-columns: 1fr;
  grid-gap: 0.5rem;
  align-items: baseline;
  padding-left: 15px;
  padding-right: 15px;
}

.tickets {
  justify-self: left;
  padding: 2.5px;
}


}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 1025px) {
.grid_header_container {
  grid-template-columns: 4fr 3fr;
  grid-template-rows: 50px 1fr;
  column-gap: 35px;
}

.index {
  grid-area: 1 / 1 / span 2 / span 1;
}

.about {
  grid-area: 2 / 1 / span 1 / span 2;
  padding-right: 0;
}

.profile {
  display: none;
}
}

