.iconpad {
    padding: 16px;
    margin: 0px;
}

.sombra {
    box-shadow: 0;
    transition: box-shadow 0.5s;
}

.sombra:hover {
    box-shadow: 5px 5px 9px -1px rgba(0, 0, 0, 0.1);
    ;
}

.icontext {
    font-size: 16px;
    text-align: center;
    animation-name: kerningOut;
    animation-duration: 0.8s;
    font-weight: normal;
    width: 240px;
    height: 160px;
}

.icontext:hover {
    font-size: 18px;
    animation-name: kerningIn;
    animation-duration: 0.8s;
    text-align: center;
    font-weight: 900;
}

@keyframes kerningIn {
    0% {
        font-size: 16px;
    }
    100% {
        font-size: 18px;
    }
    0% {
        font-weight: normal;
    }
    100% {
        font-weight: 900;
    }
}

@keyframes kerningOut {
    0% {
        font-size: 18px;
    }
    100% {
        font-size: 16px;
    }
    0% {
        font-weight: 900;
    }
    100% {
        font-weight: normal;
    }
}

.navfontsize {
    font-size: 18px;
    !important
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 35px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

html {
    scroll-behavior: smooth;
}