/* FOLHA DE ESTILO DE SMT EM CONTRUÇÃO */

/*:root{
    --accent-500: #0d9488;
    --muted: #64748b;
    --page-bg-day: #f7fbfc;
    --text-day: #0b1720;
    font-family: 'Poppins', sans-serif;
}*/

body{
    margin:0;
    background-color: rgb(172, 251, 255);

    /*color:var(--text-day);
    background:var(--page-bg-day);
    padding-bottom: 80px; */
}

body::-webkit-scrollbar {
    display: none;
    overflow: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.container{
  display: flex; /* Ativa o Flexbox */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  /* Adicione altura à div para ver a centralização vertical */
    margin-top: 50px;
}

.logo {
    width: 800px;
    height: 600px;
}