*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: white;
    color: black;
    font-family: "Roboto", sans-serif !important;
}

a {
    color: white;
}

.container {
    padding: 0 10%;
}

.titulo-section {
    padding: 20px 0;
    font-size: 3rem;
    text-align: center;
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 50px;
    text-align: center;
    cursor: pointer;
}

#back-to-top button {
    border-radius: 100%;
    padding: 5px;
    width: 2rem;
    height: 2rem;
    text-decoration: none;
    margin-bottom: 5px ;
    background-color: rgb(0,0,255);
    color: white;
    border: none;
    cursor: pointer;
}

#back-to-top p {
    color: rgb(0,0,255);
    font-weight: 500;
}

@media (max-width: 720px) { 
    #back-to-top {
        gap: 1rem;
        background: rgb(5, 5, 154);
        color: white;
        padding: 10px;
        border-radius: 20px;
        bottom: 35%;
        right: 10px;
        box-shadow: 0px 0px 10px white;
        font-size: 0.8rem;
        z-index: 1;
    }

    #back-to-top button {
        background: white;
        color: rgb(5, 5, 154);
    }

    #back-to-top p {
        color: white;
    }
}