body {
  height: 100%;
  width: 100%;
  background:linear-gradient(#905557, white);
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
}

h2{
  font-size: 2em;
  margin-bottom: 10px;
  color: white;
  padding: 5vh;
  text-shadow: 2px 2px 2px #827081;
}

.sentences {
  color: white;
  text-align: center;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
}

.form {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  background: white;
  border-radius: 10px;
}

.form h4 {
  text-align: center;
  padding: 0 0 20px 0;
}


.form form {
  padding: 0 40px;
  box-sizing: border-box;
}

form .form-control{
  position: relative;
  border-bottom: 2px solid #adadad;
  margin: 30px 0;
}

button {
  color: white;
  width: 100%;
  margin: 30px 0;
  padding: 10px;
  height: 50px;
  border: 1px solid;
  background: #C3B1E1;
  border-radius: 25px;
  cursor: pointer;
  outline: none;
  font-family: 'Nunito', sans-serif;
}

a{
  text-decoration: none;
}
p{
   font-family: 'Nunito', sans-serif;
}
/* Dropdown Button */
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

p{
  padding-left: 5vh;

}
.diary{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
