@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
    margin: 0;
    padding: 10px;
    text-decoration: none;   
    box-sizing: border-box;
}

/* .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
} */
body{
    background-color: #17382F;

/* Texto */
}
.main-text{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.last-update-txt{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 54px;
    color: #FFA900;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    border-bottom: 0.4px solid rgb(199, 197, 197);
}

.client-txt{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    color: whitesmoke;
    font-size: 32px;
    border-bottom:none
}


/* Butões */

button {
    background-color: rebeccapurple;
    color: white;
    padding: 1rem;
    font-family: inherit;
    font-size: 32px;
    font-weight: 600;
    text-shadow: 3px 1px 2px black;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    border: none;
    transition: transform 0.1s linear;
}

button:hover{
    cursor: pointer;
    transform: translate(2px, 2px);
}

button:focus {
    outline: none;
}

button:active {
    box-shadow: 0;
    transform: translate(5px, 5px);
}
.buttons{
    width: 100%;
    display: flex;
    flex-flow: wrap row;
    gap: 1em;
    height: 300px;
    justify-content: center ;
}
#btn_abordados{
    width: 100%;
    background-color: green;
}
#btn_convertidos{
    width: 40%;
    background-color: red;
}
#btn_recorrentes{
    width: 40%;
    background-color: aqua;
}



/* Parte de teste */
.testes{
    background-color: #2d2d2d;
    display:  flex;
    flex-direction: column;
    align-items: center;
    margin-top:20px;
    border-top: 0.4px solid navy;
}
td{
    background-color: bisque;
    height: 40px;
    width: 100px;
    font-size: 24px;
}