@import url("https://fonts.googleapis.com/css?family=Montserrat:400,800|Poppins&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    font-size: 20px; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
}

.info {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 30px;
}

.info h2.header {
    font-size: 50px;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    gap: 10px;
}

.content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    margin: 15px;
    padding: 40px 25px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.content .fab {
    font-size: 85px;
    margin: 20px 0;
}

.content > * {
    flex: 1 1 100%;
}

.content h2 {
    font-size: 36px;
    margin: 20px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content p {
    font-size: 19px;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
}

.content a {
    margin: 30px 0 10px 0;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid black;
    padding: 18px 0; 
    font-weight: 800; 
    border-radius: 30px;
    transition: 0.3s ease;
    display: block;
}

.content:hover { color: rgb(255, 255, 255); }
.content:hover a { border-color: rgb(255, 255, 255); background: rgb(255, 255, 255); }
.content-1:hover { border-color: #53358b; background: #5319da; }
.content-1:hover a { color: #1f0dc0; }
.content-2:hover { border-color: #ddff8d; background: #d1ff2a; }
.content-2:hover a { color: #d1ff2a; }
.content-3:hover { border-color: #ff0000; background: #ff0000; }
.content-3:hover a { color: #ff0000; }
.content a:hover { border-radius: 4px; }

@media (max-width: 900px) {
    .services {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .info h2.header { font-size: 35px; }
    .content { width: 90%; }
}

 
.bulat{
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: auto;
    z-index: 1;
}
 
.bulat li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgb(184, 146, 255);
    animation: animate 25s linear infinite;
    bottom: -150px;
    pointer-events: none
 
}
 
.bulat li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}
 
 
.bulat li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}
 
.bulat li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}
 
.bulat li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}
 
.bulat li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}
 
.bulat li:nth-child(6){
    left: 75%;
    width: 100px;
    height: 100px;
    animation-delay: 3s;
}
 
.bulat li:nth-child(7){
    left: 35%;
    width: 120px;
    height: 120px;
    animation-delay: 7s;
}
 
.bulat li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}
 
.bulat li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}
 
.bulat li:nth-child(10){
    left: 85%;
    width: 110px;
    height: 110px;
    animation-delay: 0s;
    animation-duration: 11s;
}

 
 
 
@keyframes animate {
 
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 90%;
    }
 
    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 100%;
    }
 
}
