/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  background-color: white;
}

.logo img {
  max-width: 100%;
  height: 75px;
  padding: 15px 2em 1em;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 75px;
  background: white;
  box-shadow: 0px 3px 20px #cccccc;
}

#content {
  padding: 75px 0.8em 1em;
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background: #eee;
  box-shadow: 0px 1px 10px #cccccc;
}

#left {
  width: 100%;
  padding: 0 0.8em;
}

#right {
  width: 100%;
  padding: 0 0.8em;
}

@media screen and (min-width: 980px)
{
  #left {
    width: 66%;
  }

  #right {
    width: 34%;
    position: sticky;
    top: 75px;
    right: 0;
    height: 100%;
  }
}


h1 {
  color: white;
  text-align: center;
}

p {
  font-family: verdana;
  font-size: 20px;
  background: #C0C0C0;
  color: #C0C0C0;
  border-radius: 4px;
}

span {
  color: white;
  font-size: 13px;
  padding-left: 0.5rem;
  padding-top: 0.5rem;
  display: inline-block;
}

p.info {
  color: white;
  font-weight: bold;
  padding: 0 0.5rem;
  text-align: center;
  display: table;
  width: 100%;
}

p.info span {
  font-size: 13px;
  display: table-cell;
  vertical-align: middle;
  line-height: 100%;
  padding: 0;
}

p.one-row {
  height: 25px;
}

p.two-rows {
  height: 48px;
}

p.three-rows {
  height: 72px;
}

p.four-rows {
  height: 90px;
}

p.nine-rows {
  height: 220px;
}

p.fifteen-rows {
  height: 420px;
}

@media screen and (max-width: 400px) {
  p.info span {
    font-size: 10px;
  }
}
