.content {
  overflow: auto;
  border: 3px solid #666;
}
.content div {
  padding: 10px;
  border-style: solid;
}
.content a {
  color: darkblue;
}
.blue {
  float: right;
  width: 31%;
  background-color: #1faadb;
  height: 100%;
}
.green {
  float: left;
  width: 31%;
  background-color: #4CAF50;
}
.element {
  position: relative;
  top: 50%;
  transform: perspective(1px) translateY(-50%);
}
p {
  display: inline;
  white-space: nowrap;
}
 
h1{
  font-size: 30px;
  font-family: "Georgia";
}

body {
  background-color: #fae9a0;
  font-family: "Georgia";
  font-size: 16px;
}

form {
  text-align: center; 
  font-family: "Georgia";
  font-size: 16px;
}
input {
  background-color: #4CAF50;
  border: solid;
  border-color: black;
  text-align: center;
  padding: 15px 40px;
  transition-duration: 0.4s;
  font-size: 16px;
}

input:hover {
  color: white;
  background-color: black;
}

button {
  background-color: #15d4ca;
  border: none; 
  text-align: center;
  transition-duration: 0.4s;
  padding: 40px 115px;
  width: 33%;
  height: 100%;
}

button:hover {
  background-color: #4CAF50; 
  color: white;
}

#Dislike:hover {
  background-color: #ff0000;
  color: black;
  height: 100%;
}
