body, html {
  margin: 0;
  padding: 0;
  direction: rtl;
  font-family: 'Tajawal', sans-serif;
  color: white;
  height: 100vh;
  background: linear-gradient(180deg, #5B3459 -71.44%, #32012F 100%);
 
}

.welcome-screen {
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  background: rgba(217, 217, 217, 0.02);
  flex-shrink: 0;
  height: 85%;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content{
  position: relative;
}

.main-logo {
  margin-top: 140px;
}

.bubble {
  position: absolute;
  left: -6%;
  top: -48%;
  color: #006c35;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 15px 0;
  width: 15%;
  border-radius: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap:5px;
  background: #EBE6EA;
  transform: rotate(-11.116deg);
  -webkit-transform: rotate(-11.116deg);
  -moz-transform: rotate(-11.116deg);
  -ms-transform: rotate(-11.116deg);
  -o-transform: rotate(-11.116deg);
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.bubble::after {
  content: "";
  position: absolute;
  bottom: -29px;
  left: 50%;
  transform: translateX(-48%);
  border: 15px solid transparent;
  border-top-color: #EBE6EA;
  -webkit-transform: translateX(-48%);
  -moz-transform: translateX(-48%);
  -ms-transform: translateX(-48%);
  -o-transform: translateX(-48%);
}

.bubble img {
  width:70px;
 transform: rotate(10deg);
 -webkit-transform: rotate(10deg);
 -moz-transform: rotate(10deg);
 -ms-transform: rotate(10deg);
 -o-transform: rotate(10deg);
}


h1 {
  font-size: 5rem;
  color: #EBE6EA;
  font-weight: 700;
  margin-bottom:0;
  margin-top:48px;
}

h1 span {
  color: #F97300;
}

p{
  font-size: 2rem;
  color:#B9B6B9;
}

@media (max-width: 480px) {
    .bubble {
      font-size: 0.9rem;
      padding: 10px 15px;
      left: 2%;
    }

    img{
      width:25%;
    }

    h1 {
      font-size: 1.8rem;
      line-height: 1.4;
    }

    p.fw-medium {
      font-size: 1rem;
      padding:0 50px;
    }
}

