body{
background: linear-gradient(
    -45deg,
    #050f1c,
    #0E3055,
    #1a5a8a,
    #06263f
);
    min-height: 100vh;
    color: #fefefe;
    background-size:400% 400%;
    animation:gradient 12s ease infinite;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
}

h1 {
    font-size: 1.3rem;
}

a {
    display: flex;
    justify-content: space-between;
}

.btn {
    color:#fefefe;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #026A30;
}

.btn-phone i{
    display:inline-block;
    color:#dc2626;
    font-size:2rem;
    animation:ring 2s ease-in-out infinite;
    transform-origin:50% 50%;
    margin-top : 1rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
}

.btn-mail{
    position:relative;
    overflow:hidden;
}

.btn-mail i {
    display:inline-block;
    font-size: 2rem;
    color:#fefefe;
    margin-top : 1rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
}


.btn:hover{
    background-color: #03421f;
    border: 1px solid #fefefe;
    animation:1s ease-in-out;
}

@keyframes gradient{

    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

@keyframes ring {

    0%, 92%, 100% {
        transform: rotate(0deg);
    }

    93% {
        transform: rotate(-18deg);
    }

    94% {
        transform: rotate(18deg);
    }

    95% {
        transform: rotate(-14deg);
    }

    96% {
        transform: rotate(14deg);
    }

    97% {
        transform: rotate(-8deg);
    }

    98% {
        transform: rotate(8deg);
    }

    99% {
        transform: rotate(0deg);
    }

}

@media (min-width:900px){

    .btn{
        margin-top: 5%;
        min-width: 450px;
    }

    h1 {
    font-size: 1.8rem;
    }

    .lead {
        font-size: 1.5rem;
    }

}