.logoone img {
    width: 50px;
    border: 2px solid black;
    border-radius: 25px;
}

.logo2 {
    width: fit-content;
    margin: auto;
}

.logo2 img {
    width: 200px;
    margin: 1vw 0;
    border-radius: 100px;
    position: relative;
    animation: mymove 5s;

}

body {
    background: linear-gradient(-45deg, #0e5714, #4aaf1b, #9cd171, #91e495);

    animation: gradient 15s ease infinite;
    height: 100vh;
    overflow: hidden;
    background-size: 400% 400%;

}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.inputt {
    width: 405px;
}

/* just try it */





* {
    margin: 0px;
    padding: 0px;
}

.navbar {
    display: flex;
    background-color: rgb(63, 36, 36);

    width: 100%;
    position: fixed;

}

.multi {

    display: flex;
    align-items: center;
}

.multi li {
    margin: 25px;
    list-style: none;
    font-size: 15px;
}

.multi li a {
    text-decoration: none;
    color: white;

}

.multi li a:hover {
    color: grey;
}

.rightnav {
    text-align: right;
    width: 70%;
}

.type {
    margin-top: 15px;
    padding: 5px;
    font-size: 17px;
    border: 2px solid grey;
    border-radius: 10px;
    width: 30%;
}


.btn {
    cursor: pointer;

    padding: 8px;
    border-radius: 10px
}

.btna:hover {
    background-image: linear-gradient(to bottom right, rgb(38, 255, 0), rgb(24, 153, 46));
}

.type:hover {
    background-color: beige;
}

.bun {


    margin: 0px;
    padding: 0px;
    list-style: none;




}

.button {
    cursor: pointer;
    width: 50%;
    padding: 10px;
    border-radius: 26px;
    font-family: serif;
    color: white;
    overflow: hidden;

}

.onel {
    font-size: 30px;
}

.burger {
    right: 5%;
    top: 15px;
    position: absolute;
    cursor: pointer;
    display: none;
}

.line {
    width: 33px;
    height: 4px;
    margin: 3px 3px;
    background-color: white;
}

.up {
    border: none;
    
    background: linear-gradient(-45deg, #00ff15, #00ffd0, #00aeff, #a5d4de);
    animation: gradient 15s ease infinite;
    font-size: 35px;
    padding: 20px 0;
    background-size: 400% 400%;
    transform: scale(1);
    animation: runleft 5s;
}

.down {
    background-color: transparent;
    border: 1px solid;
    font-size: 35px;
    position: relative;
    animation: runright 5s;
    padding: 20px 0;
    transform: scale(1);
}

.up:hover {
   
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.05) ;
    transition: 0.4s ease-in-out;
}

.down:hover {
    background:rgb(201, 201, 201);
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(0.95) ;
    transition: 0.4s ease-in-out;
}































































@media only screen and (max-width:4000PX) {
    .navbar {
        padding: 0px;
        display: flex;
        background-color: black;

        width: 100%;
        position: fixed;
    }
}

@media only screen and (max-width:800px) {
    .multi {
        flex-direction: column;
    }

    .navbar {
        flex-direction: column;
    }

    .burger {
        display: block;
    }

    .h-nav-resp {
        height: 80px;
    }

    .v-class-resp {
        opacity: 0;
    }

    .rightnav {
        margin-top: -34px;
    }

    .logo2 img {
        margin: 50px 0;
    }

    .up,
    .down {
        font-size: 18px;
        width: 300px;
        height: 65px;
    }



    .bun {
        margin-top: 100px;
        margin-bottom: 395px;

    }

}

@keyframes runleft {
    0% {
        margin-left: -400%;
    }

    100% {
        margin-left: 0%;
    }
}

@keyframes runright {
    0% {
        margin-right: -400%;
    }

    100% {
        margin-left: 0%;
    }
}


@keyframes mymove {
    from {
        top: -350px;
    }

    to {
        top: 0px;
    }
}