@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}
@media (max-width:768px){
    .header{
        background-color:  #3180ca;
        height: 55px;
        
    }
    .header label{
        display: block;
    }
    .menu{
        position: absolute;
        background: #ffffff;
        width: 100%;
        margin-top: -150%;
        transition: all 1s;
        border-radius: 6px;
    }
    .menu ul{
        flex-direction: column;
    }
    .menu li{
        border-top: 3px solid rgb(31, 30, 30);
    }
    .menu li a{
        text-align: center;
        font-weight: bold;
        font-size: 20px;
        color: #000;
    }
    #btn-menu:checked ~ .menu{
        margin: 0px;
        margin-top: 240px;
        

    }

    .texto{
        text-align: center;
    }

   
}