@charset "utf-8";

:root {
  --img: url('../img/gemuese.jpg');
  --orange: 233, 140, 0;
  --red: 176, 24, 22;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --grey: 75, 75, 75;
  --cursive: 'Patrick Hand', sans-serif;
  --sans: 'Open Sans', sans-serif;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
}

body:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: var(--img) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

p {
  padding-bottom: 12px;
}

table {
  text-align: left;
  padding-bottom: 12px;
  font-size: 13px;
}
th {
  padding: 6px;
}
td {
  background-color: rgba(var(--red), 0.1);
  padding: 6px;
}

h1, h2, h3 {
  font-family: var(--cursive);
  font-weight: 400;
  color: rgba(var(--black), 0.9);
}
h1 {
  padding-bottom: 12px;
  font-size: 30px;
}
h2 {
  padding-top: 18px;
  padding-bottom: 12px;
  font-size: 28px;
}

a:link, a:visited {
  color: rgba(var(--red), 0.9);
  text-decoration: none;
}
a:hover, a:active {
  color: rgba(var(--red), 0.9);
  text-decoration: none;
}
.text-link {
  font-family: var(--sans);
  font-weight: 700;
  color: rgba(var(--red), 1);
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}

.container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 2em;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  color: rgba(var(--black), 0.9);
}

.logo {
  margin-bottom: 4px;
  border-radius: 2px;
  max-width: 240px;
}

.item {
  display: flex;
  flex-direction: column;
  background-color: rgba(var(--white), 0.8);
  border-radius: 2px;
  z-index: 1000;
  padding: 18px 21px;
  margin: 2vh 0;
}

.center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 8px;
  font-family: var(--cursive);
  font-weight: 400;
  font-size: 28px;
  color: var(--red);
}

.news {
  max-width: 820px;
}
.info {
  max-width: 820px;
}
.about {
  max-width: 1100px;
}

section { 
  padding: 0 12px 16px 12px;
  font-size: 0;
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: column;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  display: -webkit-box;
  display: flex;
}
section div { 
  -webkit-box-flex: auto;
  -ms-flex: auto;
  flex: auto; 
  width: 200px; 
  margin: 3vw 1vw; 
}
section div img { 
  width: 100%; 
  height: auto; 
}
@media screen and (min-width: 578px) {
  section { 
    padding: 0 4vw 16px 4vw;
  }
  section div { 
    margin: 1vw; 
  }
}

.link {
  font-family: var(--cursive);
  font-weight: 400;
  font-size: 28px;
  color: rgba(var(--black), 0.9);
  padding-bottom: 20px;
}
.link:hover {
  background-color: rgba(var(--white), 0.85);
}

.contact {
  padding-bottom: 20px;
}
.contact:hover {
  background-color: rgba(var(--white), 0.85);
}

.info-container {
  background-color: rgba(var(--white), 0.8);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  color: rgba(var(--black), 0.9);
  min-height: 100vh;
  padding: 24px;
}
.info-container h1 {
  font-size: 28px;
  padding-bottom: 24px;
}
.info-container h2 {
  font-size: 28px;
  padding-top: 12px;
  padding-bottom: 24px;
}
.info-container h3 {
  font-size: 24px;
  padding-bottom: 12px;
}
.info-container p {
  padding-bottom: 12px;
}
.info-container ul {
  padding-left: 36px;
  padding-bottom: 12px;
}
.info-links {
  font-family: var(--cursive);
  font-weight: 700;
  font-size: 20px;
  padding-bottom: 12px;
}
.info-links a:link, .info-links a:visited {
  color: rgba(var(--white), 0.9);
  text-decoration: none;
}
.info-links a:hover, .info-links a:active {
  color: rgba(var(--white), 0.9);
  text-decoration: underline;
}

.top {
  line-height: 24px;
}

@media (min-width: 640px) {
  .logo {
    max-width: inherit;
  }
  .container {
    font-size: 18px;
  }
  table {
    font-size: 18px;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 32px;
  }
  .link {
    font-size: 32px;
  }
  .title {
    font-size: 32px;
  }
  .row {
    flex-direction: row;
  }
}