.social-link-bar .vertical-line {
  height: 120px;
  border-left: 1px solid pink;
  margin-left: 38px;
}
body {
  background-color: rgb(57, 55, 55);
  font-family: Helvetica, Arial, sans-serif;
}

a {
  color: rgb(193, 140, 148);
}

header {
  margin-bottom: 30px;
}

.image-container {
  background-image: url(https://s3.amazonaws.com/shecodesio-production/uploads/files/000/157/317/original/paulo.jpg?1739336934);

  width: 1400px;
  min-height: 800px;
  box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

h1 {
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: black;
}

form {
  display: flex;
}

.hint {
  line-height: 1.5;
  margin-top: 5px;
  opacity: 0.6;
  font-size: 12px;
}
.instructions {
  padding: 16px;
  border: 1px solid rgba(39, 33, 66, 0.5);
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 20px;
  color: #272044;
}

.submit-button {
  margin-left: 10px;
  background: rgb(174, 142, 169);
  color: white;
  border: none;
  width: 150px;
  font-size: 16px;
  border-radius: 50px;
  padding: 14px 24px;
}

.quote {
  font-size: 16px;
  background-color: whitesmoke;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid purple;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
}

.hidden {
  display: none;
}

.generating {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}
#to-top {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: 2px solid black;
  background-color: transparent;
  color: silver;
  cursor: pointer;
  padding: 10px 12px 13px 12px;
  border-radius: 40px;
  font-size: 24px;
}
