*{
    margin: 0;
}

header{
    display: flex;
    align-items: flex-end;
    padding: 5rem 10rem;
    height: 25vh;
    background: linear-gradient(
    to bottom right,  
    #d17300,#ba0023,
    #8a00a8, #5200a8,
    #603eda, #1976bd,
    #0095b4, #00b472);
    background-repeat: no-repeat;
    background-size: 400% 400%;
    animation: gradient 100s ease infinite;
    box-shadow: 0px 0px 40px 5px rgb(0 0 0 / 20%);
}

.titleBox h1{
    font-family: 'Reem Kufi Fun', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
}

.description{
    padding: 2rem 10rem;
}

.description h2{
    font-family: 'Reem Kufi Fun', sans-serif;
    font-size: 3rem;
    font-weight: 700;
}
.description_separator{
    background-color: rgba(249,151,119,1);
    height: 2px;
}

@keyframes gradient { 
    0%{background-position:0% 0%}
    50%{background-position:100% 100%}
    100%{background-position:0% 0%}
  }