html, body {
  background: #ccccee;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Muli", "Palatino", sans-serif;
  font-size: 12pt;
}

* {
  box-sizing: border-box;
}

body {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

#header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #f8f8fc;
  padding: 0.25rem 5%;
  color: #222233;
  border-bottom: 1px solid #222233;
}
#header a {
  color: #ee6600;
}
#header a.title {
  color: white;
  text-decoration: none;
}
#header .link {
  font-size: 1.1rem;
}

#footer {
  font-size: 0.7rem;
  color: #222233;
  text-align: center;
  background: #f8f8fc;
  border-top: 1px solid #222233;
  padding: 2px;
}

#main {
  flex: 1;
  margin: 0 5%;
  background: #ffffff;
  overflow-y: scroll;
  overflow-x: hidden;
}

div.inner {
  overflow: hidden;
  padding: 0.5rem 1rem;
}

.disclaimer {
  background: #ffff88;
  border: 1px solid #aaaa00;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 3px;
}

h2 {
  font-size: 1.1rem;
}

#t {
  position: relative;
  height: 16rem;
  border: 1px solid #dddddd;
  margin-bottom: 0.5rem;
}

#text {
  position: absolute;
}

#dtext {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 9;
  background: white;
  padding: 0.25rem;
}
#dtext p {
  margin: 0 0 0.5rem 0;
}

#copy, #feed, #more {
  width: 10rem;
}

#copydone {
  font-style: italic;
  color: blue;
  display: inline-block;
  margin-left: 1rem;
}

.start {
  display: flex;
  align-items: center;
  margin-top: 4px;
}
.start img {
  margin-right: 8px;
}

.rows {
  clear: both;
  display: flex;
  flex-wrap: wrap;
}

.row {
  flex: 0 1 26rem;
  padding: 0.4rem;
  margin: 0.4rem;
  background: #ffffee;
  border: 1px solid #eeeecc;
  border-radius: 4px;
}

p.label {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}

p.descr {
  font-size: 0.9rem;
  margin: 0.5rem 1rem;
  clear: both;
}

.button {
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 0.2rem;
  background: #222233;
  border-style: solid;
  border-width: 2px;
  border-color: #8888aa #111118 #111118 #8888aa;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}
.button:hover {
  background: #4444aa;
}
.button.count {
  font-size: 90%;
  margin-left: 0.5rem;
  padding: 0;
  width: 3rem;
}

.hid {
  display: none;
}

#feeder {
  position: absolute;
  background: #0055ff;
  color: white;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  user-select: none;
}
#feeder .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 4rem;
  font-size: 20pt;
}
#feeder .count {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 16pt;
  color: #eeeeee;
}
#feeder .info {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  text-align: center;
  font-size: 13pt;
  color: #eeeeee;
}
#feeder .text {
  font-size: 30pt;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 1rem;
  right: 1rem;
  transform: translateY(-50%);
}
#feeder .image {
  position: absolute;
  top: 4.5rem;
  left: 1rem;
  right: 1rem;
  bottom: 3rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.pixabay {
  float: right;
  margin-left: 1rem;
}
.pixabay img {
  width: 94px;
}

@media screen and (max-width: 600px) {
  .disclaimer, #header .link {
    display: none;
  }

  p.descr {
    margin: 0.5rem 0;
  }

  a.count {
    margin-left: 0;
    width: 16%;
  }

  img.pic {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
