/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jan 31, 2015, 9:27:19 AM
    Author     : ronin
*/
body {
  background: url('hintergrund.jpeg');
  background-size: 100%;
  font-family: 'Indie Flower', cursive;
  font-size: 20px;
}
.header {
  padding: 5px 25px;
  margin: 20px 0;
  text-align: center;
  background: #F0F8FF;
  border: 9px solid white;
  opacity: 0.7;
}
.insertCont .buttons > div {
  display: inline-block;
  cursor: pointer;
}
.content div {
  display: inline-block;
  background: darkred;
  border: 5px solid white;
  color: white;
  margin: 2%;
  opacity: 0.7;
  padding: 20px 0;
  text-align: center;
  width: 45%;
  -webkit-transition: background-color 1s;
  -moz-transition: background-color 1s;
  -o-transition: background-color 1s;
  transition: background-color 1s;
}
.content div:hover {
  opacity: 1;
}
.content div img {
  width: inherit;
  max-width: 100%;
  height: 400px;
}
@media (max-width: 950px) {
  .content div {
    display: block;
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */