@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Sarala:wght@400;700&display=swap');


body {
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
    font-family: 'Sarala', sans-serif;
    color: #000;
}


.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 40px auto;
    position: absolute;
    text-align: center;
    color: #000;
}

.logo {
    width: 130px;
    height: auto;
    border-radius: auto;
    align-items: center;
    
}


.links h1 {
    font-size: 40px;
    margin-top: 50px;
    font-family: 'Roboto', sans-serif;
}


.links p {
    font-size: 14px;
    margin: 15px auto;
    font-weight: bold;
    line-height: 25px;
    font-family: 'Sarala', sans-serif;
}


.botao {
    margin-bottom: 30px;
}


.button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 60px;
    margin-top: 15px;
    margin-left: auto;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
    border: none;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    position: relative;
    box-shadow: 4px 5px 4px rgba(0, 0, 0, 0);
    font-family: 'Sarala', sans-serif;
}

.button:hover {
    background-color: #fff;
    color: #000;
    border: none;
}

@media screen and (min-width: 1024px) {
    .links {
        position: static;
        width: 50vw;
    }
}

