.main {
  height: calc(100vh - 30px);
  gap: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.img-wrapper {
  position: relative;
  width: 200px;
}

.desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 80px;
  color: white;
}
.text {
  font-weight: 700;
  font-size: 23px;
  color: black;
}

.buttonWrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 15px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  cursor: pointer;

  font-size: 18px;
  font-weight: 700;
  color: black;
  text-decoration: none;

  padding: 5px 15px;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 4px;
}
.button:hover {
  background-color: rgba(45, 106, 237, 0.04);
  border: 1px solid rgb(45, 106, 237);
}
