*{
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

h1 {
    width: 100%;
    left: 0px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: top;
    max-width: 550px;
    color: #727586;
    margin: 0px;
}

.centro{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; /* ou ajuste conforme o necessário */
    width: 100%;
}

.gear {
    font-size: 50px;
    color: #333;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}