.picture {
  height: 400px;
  margin-left: 9px;
  width: auto;
  min-width: 213px;
  border: thin #AAA solid;
  padding: 7px;
  -moz-box-shadow: 2px 2px 4px 2px #ccc;
  -webkit-box-shadow: 2px 2px 4px 2px #ccc;
  box-shadow: 2px 2px 4px 2px #ccc;
  display: table-cell;
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}

.picture:hover {
border-radius: 50%;
  -webkit-transform: rotate(360deg);
     -moz-transform: rotate(360deg);
       -o-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

body {
 background-color: #f1f1f1;
}

#container {
  width: 700px;
  background-color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 10px;
  overflow: hidden;
  max-height: 540px;
  margin: 20px auto;
}

.info {
  position: relative;
  left: 30px;
  bottom: 360px;
  max-width: 430px;
  display: table-cell;
  -webkit-transform: translate(0px, -30px);
  -moz-transform: translate(25px, -190px);
}

#content {
  display: table;
}

#contentContainer {
  display: table-row;
}

.logo {
  width: 250px;
  height: auto;
  margin-left: 9px;
}

.quote {
  max-width: 330px;
  position: relative;
  left: 270px;
  bottom: 23px;
}

