body {
  font-family: Arial, Helvetica, sans-serif;
  background: rgb(207, 94, 156);
  background: linear-gradient(
    180deg,
    rgba(207, 94, 156, 1) 0%,
    rgba(234, 129, 107, 1) 100%
  );
  background-attachment: fixed;
  color: white;
  text-align: center;
}

img {
  border-radius: 50%;
  width: 100px;
}

.button {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  width: 70%;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button:hover {
  background-color: white;
  text-decoration: none;
  border: 1px solid white;
  color: purple;
}

.bottom-text {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;
}
