body {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  background-color: #f1f0ef;
  margin: 0;
  padding: 0;
}

p {
  white-space: pre-wrap;
  padding: 0px 30px 30px 30px;
}

a {
  text-decoration: none;
  color: #3f4830
}

section {
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

section:target {
  margin-top: 0%;
  background-color: #f1f0ef;
}

#content {
  height: 100vh;
  background-color: #f1f0ef;
}

#footer {
  padding: 0;
  position: absolute;
  bottom: 0;
  height: 65px;
  width: 100%;
}

#about {
  transition-timing-function: ease;
  padding: 15px;
  background-color:#daa2ba;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color:#f1f0ef ; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #f1f0ef; /* Add a dark-grey background on hover */
}