@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Forum&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    display: flex;
  background: rgb(57,55,111);
background: -moz-radial-gradient(circle, rgba(57,55,111,1) 0%, rgba(2,0,36,1) 100%, rgba(7,6,18,1) 100%);
background: -webkit-radial-gradient(circle, rgba(57,55,111,1) 0%, rgba(2,0,36,1) 100%, rgba(7,6,18,1) 100%);
background: radial-gradient(circle, rgba(57,55,111,1) 0%, rgba(2,0,36,1) 100%, rgba(7,6,18,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#39376f",endColorstr="#070612",GradientType=1);
    text-align: center;
    margin: 0;
    height: 100vh;
    align-items: center;
}

section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
}

.logo {
    width: 100%;
    max-width: 600px;
}

.titulo h1 {
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 78px;
    background: linear-gradient(to right, #32FF6A, #0157ED);
    background-size: 200% 200%;
    animation: animacaoDegrade 5s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 16px;
    color: white;
}

a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
    font-weight: 300;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    
}

a img {
    width: 100%; 
    max-width: 20px;
    padding-right: 5px;
}

@keyframes animacaoDegrade {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

 @media screen and (max-width: 1000px) {
    h3 {
        font-size: 14px;
    }
    
 }