.thank_you {
  width: 100vw;
  height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.thank_you_img, .thank_you_logo {
  width: 300px;
}

.thank_you_logo {
  position: fixed;
  bottom: 0;
  transform: translateY(-20%);
}

.thank_you_text {
  margin: 0 100px;
}

.thank_you_button {
  height: 40px;
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #02205f;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}


.thank_you_button:hover {
  scale: 1.1;
  background-color: #fcd400;
}