.body1{
    background: linear-gradient(135deg, hsla(253, 87%, 50%, 1) 9%, hsla(197, 100%,60%,1)82%);
   min-height: 100vh;
   padding-top: 100px;

}
*{
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
a{
    text-decoration: none;
    color: black;
}
#container{
    display: flex;
    align-items: center;
   color: black;
   
}

#container button{
    border: none;
    background-color: transparent;
    cursor: pointer;
    margin-right:10px ;
    


}
.fa-arrow-left{
    font-size: 25px;
    color: black;

}

#search{
    margin-left: 10px;
    font-size: 15px;
    padding: 10px;
    font-weight: bold;
    border-radius: 10px;
    border: 1px solid #000;
    width: 400px;
}

#contactdiv{

 border-radius: 20px 20px 20px 20px;
 width: 60%;
 margin: auto;
 padding: 50px;
 background-color: white;
animation: slideup 1s ease;
 height: auto;
}
@keyframes slideup{
    0%{
        transform: translateY(900px);
    }
    100%{
        transform: translateY(0px);
    }
}
.contact-icon{
    font-size: 30px;
    margin-left: 10px;
    margin-top: 10px;
    padding-top: 1px;
}
#sort{
    margin-right: 10px;
    margin-left: 10px;
    font-size: 15px;
    border: 1px solid rgb(65,17,237);
    background-color: rgb(65,17,237);
    color: white;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}
#sort:hover{
    background-color: white;
    color: rgb(65,17,237);
    border: 1px solid rgb(65,17,237);
}
#sort2{
    font-size: 15px;
    border: 1px solid rgb(65,17,237);
    background-color: rgb(65,17,237);
    color: white;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}
#sort2:hover{
    background-color: white;
    color: rgb(65,17,237);
    border: 1px solid rgb(65,17,237);
    cursor: pointer;
}

.contactcard{
    display: flex;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
    height: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;

}
.contactcard i{
    font-size: 20px;
    margin-right: 10px;
    margin-left: 10px;
    color: rgb(65,17,237);
    border-radius: 50%;
    padding: 10px;
    border: 2px solid rgb(65,17,237);
}

.contactcard p{
    font-size: 18px;
    margin-left: 10px;
    font-weight: bold;
}
#contact{
    margin-top: 25px;
    margin-bottom: 25px;
}

#loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 15px;
    height: 15px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: auto;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
@media all and (max-width: 768px) {
   
    #sortdiv{
        margin-top:10px;
        margin-bottom: 10px;
    }
    #search{
        width: 200px;
        margin-bottom: 10px;
    }
    #sort, #sort2{
        margin-top: 10px;
        margin-bottom: 10px;
    }
    #moneyTransfer {
        margin-bottom: 10px;
    }
    #contact{
        margin-bottom: 10px;
        margin-top: 10px;
    }
}