.icon {
  position: fixed;
  bottom: 35px;
  right: 30px;
  font-size: 30px;
  color: #2b2b2b;
  background-color: #d0ac6b;
  border-radius: 50%;
  padding: 10px;
  width: 65px;
  height: 65px;
  text-align: center;
  text-decoration: none;
  z-index: 100;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #d0ac6b;
  flex-direction: column;
}
.text {
  font-size: 45px;
  color: #f5f5f5;
  margin-bottom: 30px;
}
.paragrafo {
  color: #f5f5f5;
  margin-bottom: 50px;
}
.btn {
  padding: 15px 55px;
  background-color: #f5f5f5;
  text-decoration: none;
  color: #d0ac6b;
  transition: all 0.5s;
  font-size: 18px;
}
.btn:hover {
  border-radius: 16px;
}
.fade-in {
  animation: fadeIn 6s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
