@font-face {
  font-family: 'Roboto Condensed Bold';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url('/res/fonts/RobotoCondensed-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed Regular';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed Regular'), local('RobotoCondensed-Regular'), url('/res/fonts/RobotoCondensed-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed Light';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url('/res/fonts/RobotoCondensed-Light.ttf') format('truetype');
}
html {
  font-size: 110%;
}
body {
  text-align: center;
  margin: 10px;
  font-family: 'Roboto Condensed Light', sans-serif;
  background-color: #7a7b78;
  color: white;
}
body a {
  color: white;
}
body a:hover {
  color: #e7db74;
}
body div.card {
  max-width: 60%;
  min-width: 700px;
  padding: 10px;
  border: 1px solid #000000;
  box-shadow: 0 0 10px 0px rgba(0,0,0,0.4);
  background-color: #282923;
  margin: 10px auto;
}
body div.card:first-child {
  margin-top: 0;
}
body div.card:last-child {
  margin-bottom: 0;
}
body div.card div.cardImage {
  margin: -10px -10px 0 -10px;
  max-height: 27vw;
  overflow: hidden;
  display: flex;
}
@media only screen and (max-width: 768px) {
  body div.card div.cardImage {
    max-height: 50vw;
  }
}
body div.card div.cardImage img {
  align-self: center;
  max-width: 100%;
  display: block;
}
body div.card h1,
body div.card h2,
body div.card h3 {
  font-family: 'Roboto Condensed Bold', sans-serif;
}
body div.card p:first-child {
  margin-top: 0;
}
body div.card p:last-child {
  margin-bottom: 0;
}
body div.card p.liid {
  font-family: 'Roboto Condensed Bold', sans-serif;
}
body div.card textarea {
  font-family: 'Roboto Condensed Regular', sans-serif;
  font-size: 1.3rem;
  padding: 10px;
  width: 100%;
  height: 7em;
  box-sizing: border-box;
}
body div.card button {
  background-color: #7a7b78;
  color: white;
  font-family: 'Roboto Condensed Bold', sans-serif;
  font-size: 1.3rem;
  padding: 5px 13px 8px 13px;
  border-radius: 7px;
  border: 2px solid white;
  cursor: pointer;
}
body div.card button:hover {
  background-color: #282923;
}
body div.message {
  background-color: #e7db74;
  color: #282923;
}
