body {
  background-image: url(/resources/images/background.png);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Calibri", Tahoma, sans-serif;
  color: #6f5f5f;
  font-size: 13px;
  line-height: 1.5;
}

div.main_container {
  width: 1100px;
  display: flex;
  margin: 7% auto;
}

div.sub_container {
  margin: 20px;
}

div#navigation_container {
  flex: 16%;
}

div#content_container {
  flex: 84%;
  box-shadow: 3px 3px 10px 1px rgba(50, 50, 50, 0.5);
  background-color: rgba(250, 250, 250, 0.8);
  margin-top: 60px;
  padding: 30px;
  height: 470px;
  min-width: 780px;
  max-width: 780px;
  border-radius: 2px;
}

div.content_container_transparent#content_container {
  background-color: rgba(255, 255, 255, 0.1);
}

div.content_column_container {
  display: flex;
  margin: 0;
  padding: 0;
}

div.content_column {
  margin: 0 15px;
  flex: 25%;
}

div.scrollable {
  overflow: scroll;
  height: 420px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  font-weight: bold;
  color: Coral;
}

a.navigation_link {
  display: block;
  background-color: rgba(250, 250, 250, 0.8);
  font-size: 12px;
  margin: 3px 2%;
  text-transform: uppercase;
  padding: 5px 10px;
  color: #6f5f5f;
  font-weight: bold;
  height: 17px;
  text-decoration: none;
  border-radius: 2px;
}

a.navigation_link#logo {
  height: auto;
}

a.navigation_link::first-letter {
  font-size: 14px;
}

a.navigation_link:hover:not(#logo) {
  background-color: white;
  color: Coral;
}

a.navigation_link:hover:not(#logo)::before {
  content: "► ";
}

img#logo {
  width: 96%;
  margin: 0 2%;
}

a.image_link img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
  transform-origin: top center;
  margin: 30px 0;
  width: 160px;
  height: 180px;
}

img#about_box {
  transform: rotate(-5deg);
  box-shadow: 3px 3px 10px 1px rgba(100, 100, 100, 0.8);
  border-radius: 7px;
}

img#offers_box {
  transform: rotate(-3deg);
  box-shadow: 3px 3px 10px 1px rgba(100, 100, 100, 0.8);
  border-radius: 7px;
}

img#prices_box {
  transform: rotate(5deg);
  box-shadow: 3px 3px 10px 1px rgba(100, 100, 100, 0.8);
  border-radius: 7px;
}

img#contact_box {
  transform: rotate(-4deg);
  box-shadow: 3px 3px 10px 1px rgba(100, 100, 100, 0.8);
  border-radius: 7px;
}

a.image_link:hover img#about_box {
  transform: rotate(0deg);
}

a.image_link:hover img#offers_box {
  transform: rotate(2deg);
}

a.image_link:hover img#prices_box {
  transform: rotate(0deg);
}

a.image_link:hover img#contact_box {
  transform: rotate(1deg);
}

h2 {
  background-color: Coral;
  padding: 0px 20px;
  color: white;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  font-weight: lighter;
}

h1 {
  color: Coral;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: normal;
  margin-top: 0;
  display: block;
  border-bottom: solid 1px #5f4f4f;
  padding-bottom: 2px;
}

h6 {
  color: Coral;
  font-size: 13px;
  margin-bottom: 0;
  margin-top: 15px;
}

p, ul, ol {
  margin-top: 3px;
}

p.startpage {
  color: white;
  font-size: 12px;
  margin: 3px;
}

table {
  border-collapse: collapse;
}

tr:nth-child(odd) {
  background-color: rgb(230, 230, 230);
}

td {
  margin: 0;
  border: none;
  padding: 2px 10px;
}

div.slogan {
  height: 140px;
  display: table-cell;
  vertical-align: middle;
}

div.slogan span {
  font-size: 25px;
  margin-left: 30px;
  font-weight: bold;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  color: Coral;
  text-shadow: 4px 4px 20px rgba(255, 255, 255, 1);
}

img.offers_img {
  box-shadow: 2px 2px 10px 2px rgba(171,171,171,1);
}

div.guestbook_entry {
  background-color: white;
  box-shadow: 4px 4px 10px 2px rgba(140,140,140,1);
  padding: 0 20px 20px;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  width: 50%;
  transform: rotate(10deg);
  margin: 25px auto;
}

input {
  outline-color: Coral;
  font-family: "Calibri", Tahoma, sans-serif;
  color: #6f5f5f;
  font-size: 13px;
}

textarea {
  outline-color: Coral;
  font-family: "Calibri", Tahoma, sans-serif;
  color: #6f5f5f;
  font-size: 13px;
  line-height: 1.5;
}

p.success {
    background-color: green;
    padding: 0px 20px;
    color: white;
    font-size: 13px;
    text-align: center;
    text-transform: uppercase;
    font-weight: lighter;
}

p.error {
    background-color: red;
    padding: 0px 20px;
    color: white;
    font-size: 13px;
    text-align: center;
    text-transform: uppercase;
    font-weight: lighter;
}
