body {
    background-color: #76AEE6;
    font-family: 'Montserrat', sans-serif;
    margin-inline: 37px;
    color: white;
}


h1 {
    font-size: 33px;
    font-weight: 900;
    line-height: 100%;
}

h2 {
    font-size: 25px;
    font-weight: 900;
    line-height: 100%;
}

h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
}

p {
    font-size: 12px;
    font-weight: 700;
    line-height: 100%;
}

button {
    padding-block: 9px;
    padding-inline: 55px;
    border-radius: 14px;
    background-color: white;
    color: #76AEE6;
    font-size: 18px;
    font-weight: 800;
    /* box-shadow: 0px 4px 6px #578CD6; */
}

.btn-get {
    padding-inline: 39.5px;
}

.loader {
    width: 213px;
    height: 213px;
    /* border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%; */
    animation: spin 5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.text-justify {
    text-align: justify;
    border: 2px solid white;
    border-radius: 10px;
    padding: 10px;
}

.last-words {
    font-family: 'Mirza', sans-serif;
    text-align: justify;
    width: 311px;
    font-weight: 200;
    font-size: 16px;
}

.italic {
    width: 203px;
    font-family: 'Mirza', sans-serif;
    font-style: italic;
    font-weight: 400;
    /* padding-right: 60px; */
}

.title {
    font-family: 'Mirza', sans-serif;
    font-weight: 400;
    font-size: 25px;
}

.bg {
    position: absolute;
    z-index: 0;
    opacity: 1;
    top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
}

  .animate-fade-in {
      animation: fadeIn 2s ease-in-out forwards;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }