html{
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Kepler';
    src: url('/Library/Fonts/KeplerStd-BoldScnItDisp.otf');
    font-weight: 600;
    font-style: bold;
}

h2 {
    font-family: 'Kepler';
    font-weight: 600;
    font-size: 25px;
    color: white;
    line-height: 0px;
    font-style: italic;
}


h3 {
    font-family: 'Kepler';
    font-weight: 600;
    font-size: 35px;
    font-style: italic;
    background: -webkit-linear-gradient(0deg, #F59E59, #E9021D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transition:0.3s ease-out;
}

.gradient-text:hover{
    filter: drop-shadow(0 0mm 4mm #F59E59);
}

body {
    background: linear-gradient(90deg, rgba(85,143,255,1) 0%, rgba(0,9,106,1) 100%);
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
}

header{
    height: 100vh;
    display: flex;
    align-items: center;
}

/* SCROLLBAR */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #11283E;
}

::-webkit-scrollbar-thumb {
    background: #FEE0B8;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F59E59;
}

/* END SCROLLBAR */

.content-home{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.logo-home{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.title-home{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.gif-home{
    position: absolute;
    z-index: -1;
}

.btn-download{
    background: linear-gradient(90deg, #F59E59 0%, #E9021D 100%);
    padding: 4px 20px 0px 20px;
    border-radius: 20px;
    margin: 50px 20px 40px 20px;
    transition: 0.5s ease-out;
}

.btn-download a{
    color: #fff;
    text-decoration: none;

}

.btn-download:hover{
    background: #fff;
}

.btn-download:hover h2{
    color: #E9021D;
}

.btn-social{
    display: flex;
    justify-content:center;
    width: 100%;
}

.btn-social img:hover{
    transform: scale(1.2);
}

.btn-social img{
    transform: scale(1);
    transition: 0.3s ease-out;
    width: 35px;
    margin: 20px;
}

/*End Home*/
