@tailwind base;
@tailwind components;
@tailwind utilities;

html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #f6f7f8;
}
/* nav */
nav {
    width: 100%;
    height: 50px;
    background-color: #ff4d00;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 8px 20px -2px gray;
    padding: 10px;
}
/* ul {
    display: flex;
    gap: 2rem;
    list-style-type: none;
    padding: 0;
}*/
ul li a {
    font-size: 20px;
} 
ul li a:hover {
    background-color: #FB5607;
    color: white;
    padding: 10px;
    border-radius: 10px;
}

@media (max-width:760px) {
    nav {
        background-color: #ff4d00;
        /* flex-direction: column;
        align-items: center;
        height: 350px; */
    }
    /* ul {
        flex-direction: column;
    } */
    ul li a:hover {
        background-color: #FB5607;
        width: 100% !important; 
        color: white;
    }
    .bg-home{
        background-image: url("img/logo-na-batata-deu-fome-de-batata.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}
.no-scrollbar::-webkit-scrollbar {
    display: none; /* Esconde a barra de rolagem no Chrome, Safari e Opera */
  }
  
  .no-scrollbar {
    -ms-overflow-style: none;  /* Esconde a barra de rolagem no IE e Edge */
    scrollbar-width: none;  /* Esconde a barra de rolagem no Firefox */
  }
#menu {
    display: block;
    justify-content: center;
    align-items: center;
}
p {
    font-size: 1.2rem;
}
h2 {
    font-size: 2rem;
}
.hidden {
    display: none;
}
/* carrinho */
div.carrinho {
    background-color: #F4A71A;
}
/* rodape */
footer {
    background-color: #FB5607;
}