/* /body {

    background-image: url("scr/f2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;





}  */

video {

    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;

}

h1 {
    
        font-family: 'Roboto', sans-serif;
        font-size: 50px;
        font-weight: 700;
        color: #ffffff;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    
}

h2 {
    
        font-family: 'Roboto', sans-serif;
        font-size: 30px;
        font-weight: 700;
        color: #ffffff;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    
}

h5 {
    
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    
}

a {
    
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #0ca840;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    
}

.card-header {

    background-color: #0ba4eb;
    color: #ffffff;
    

}

.card-body {

    background-color: #ffffff;
    color: #000000;
    border-radius: 16%;
    

}


button {
    font-family: inherit;
    font-size: 20px;
    background: #0ba4eb;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
   }
   
   button span {
    display: block;
    margin-left: 0.3em;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
   }
   
   button svg {
    display: block;
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
   }
   
   button:hover .svg-wrapper {
    -webkit-animation: fly-1 0.6s ease-in-out infinite alternate;
            animation: fly-1 0.6s ease-in-out infinite alternate;
   }
   
   button:hover svg {
    -webkit-transform: translateX(1.2em) rotate(45deg) scale(1.1);
        -ms-transform: translateX(1.2em) rotate(45deg) scale(1.1);
            transform: translateX(1.2em) rotate(45deg) scale(1.1);
   }
   
   button:hover span {
    -webkit-transform: translateX(5em);
        -ms-transform: translateX(5em);
            transform: translateX(5em);
   }
   
   button:active {
    -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
            transform: scale(0.95);
   }
   
   @-webkit-keyframes fly-1 {
    from {
     -webkit-transform: translateY(0.1em);
             transform: translateY(0.1em);
    }
   
    to {
     -webkit-transform: translateY(-0.1em);
             transform: translateY(-0.1em);
    }
   }
   
   @keyframes fly-1 {
    from {
     -webkit-transform: translateY(0.1em);
             transform: translateY(0.1em);
    }
   
    to {
     -webkit-transform: translateY(-0.1em);
             transform: translateY(-0.1em);
    }
   }
   
