<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ROOT SETTINGS */

:root {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  --modra: #0070af;
  --cervena: #ee3424;
  --zluta: #ffd84f;
  --zelena: #57aa27;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 5px 0;
  text-align: left;
}

p {
  margin: 0 0 5px 0;
}

body {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* NAV AND MENU */

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin-left: 20px;
  margin-right: 20px;
}

.menulinks {
  display: flex;
  flex-basis: 80%;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-weight: 700;
}

.menulinks a {
  margin: 5px 10px;
  text-decoration: none;
  color: var(--modra);
  font-size: 18px;
  border-bottom: 2px rgba(0, 112, 175, 0) solid;
}

.menulinks a:hover {
  border-bottom: 2px var(--modra) solid;
  transition-duration: 0.2s;
}

#logo img {
  max-width: 200px;
  margin: 20px 0 5px 5px;
}

.menulinks ul li {
  font-size: 20px;
}

/* BODY FLEX */

.body-container {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  margin: 0 15px;
}

/* CONTENT BASE AND COLORS */

.row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.helloimage {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("/img/hello.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  width: 100%;
  color: white;
  font-size: 50px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
  transition-duration: 0.2s;
}

.green {
  background-color: var(--zelena);
}

.yellow {
  background-color: var(--zluta);
  color: black !important;
}

.blue {
  background-color: var(--modra);
}

.red {
  background-color: var(--cervena);
}

/* TEXTBOX SETTINGS */

.textbox {
  /* flex-basis: 75%; */
  padding: 15px;
  border-radius: 10px;
  color: white;
  margin: 5px 0;
  text-align: justify;
}

.textbox ul {
  padding-left: 20px;
}

/* IMAGES */

.rightimg {
  margin-left: 5px;
  margin-right: 0;
}

.leftimg {
  margin-right: 5px;
  margin-left: 0;
}

.sideimg {
  flex-basis: 100%;
  border-radius: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-position: center;
  background-size: cover;
}

.map {
  flex-basis: 100%;
  border-radius: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.loga {
  align-self: center;
}

/* INDIVIDUAL (IDs) */

#homepage-pionyr {
  background-image: url("/img/pionyr.jpg");
}

#homepage-striving {
  background-image: url("/img/strive.jpg");
}

#homepage-aim {
  background-image: url("/img/aim.jpg");
}

#history-1949 {
  background-image: url("/img/Historie_31.jpg");
}

#history-1968 {
  background-image: url("/img/Historie_21.jpg");
}

#history-1990 {
  background-image: url("/img/Historie_51.jpg");
}

#activities-meetings {
  background-image: url("/img/troops.jpg");
}

#activities-clubs {
  background-image: url("/img/clubs.jpg");
}

#activities-expeditions {
  background-image: url("/img/expeditions.jpg");
}

#activities-camps {
  background-image: url("/img/camps.jpg");
}

#contact table {
  min-width: 500px;
}

#contact h3 {
  padding: 5px 0 0 0;
}

.map {
  margin-left: 5px;
  margin-right: 0;
}

.mobilemap {
  display: none;
}

.loga {
  justify-content: center;
}

#loga {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.loga img {
  max-height: 85px;
  margin: 10px;
}

/* MEDIA QUERIES */

@media screen and (max-width: 900px) {
  .menulinks {
    justify-content: center;
  }
  .sideimg,
  .map {
    display: none;
  }
  .textbox {
    flex-basis: 100%;
  }
  .helloimage {
    font-size: 40px;
    transition-duration: 0.2s;
  }
  .mobilemap {
    display: block;
    width: 100%;
  }
}
</pre></body></html>