.con1{
    animation: hScroll 15s linear infinite alternate;
}

.con2{
    transform: translateX(-420%);
    animation: hScroll2 40s linear infinite alternate;
}

@keyframes hScroll{
    to {
        transform: translateX(-100%);
    }
}
@keyframes hScroll2{
    to {
        transform: translateX(10%);
    }
}

.Frame1{
    background-image: linear-gradient(to bottom right,white,rgb(15, 82, 186));
}

.google{
    animation: googleAnimation 0.5s linear infinite alternate-reverse;
}

/*.bing{
    animation: bingAnimation 0.5s linear alternate-reverse;
}*/

.yahoo{
    animation: yahooAnimation 0.5s linear infinite alternate-reverse;
    animation-delay: 0.5s;
}

@keyframes googleAnimation {
    to{
        transform: translateY(-10px);
    }
}
@keyframes yahooAnimation {
    to{
        transform: translateY(-10px);
    }
}

@keyframes bingAnimation {
    to{
        transform: translateY(-40px);
    }
}

.facebook{
    animation: faceAnimation 0.5s linear infinite alternate-reverse;
}

@keyframes faceAnimation {
    to{
        transform: scale(.9);
    }
}

.but{
    animation: butAni 0.5s ease-in infinite alternate-reverse 1s;
}

.click{
    display: none;
}

@keyframes butAni {
    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(40px);
    }

}

.btn{
    font-size: 18px;
    width:200px;height: 50px;
    background-color: rgb(243, 243, 243);color: rgb(0, 0, 0);
    transition: transform 0.3s;
}

.btn:hover{
    background-color: rgb(75, 115, 202);
    color:white;
    transform: scale(1.1);
}
.btn:active{
    background-color: rgb(184, 180, 180);
    color:white;
}
.contact{
    background-image: url(eimg/back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.h2{
    font-family: "Orbitron", serif;
    font-weight: bold;
}

.h6{
    font-family: "Gemunu Libre", serif;
    font-weight: bold;
}

.fs-6{
    font-family: "Gemunu Libre", serif;
    
}

.h3{
    font-family: "Iceland", serif;
    font-weight: bold;
}

.btn{
    font-family: "Sarpanch", serif;
}