    * {
        margin:0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.149) 0%, rgba(0, 0, 0, 0.625) 100%), url("/img/dulcebaralla/background.avif"); 
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: center; 
     }

     .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
        margin-top: 12px;
    }
    
    .logo img {
        max-height: 14vh;
        margin: 10px;
    }
    
    .title {
        text-align: left;
        font-size: 5vw;
        color: white;
        font-weight: bold;
        color: orange;
    }
    
    .user-info {
        display: flex;
        align-items: start;
        color: white;
        gap: 10px;
    }
    
    .user-icon {
        font-size: 25px;
        color: white;
    }
    
    .username {
        font-size: 15px;
        background-color: white;
        color:black;
        border-radius: 5px;
        padding:1vw 2vw;
    }

    .container {
        width: 100%;
        background-color: rgba(0, 0, 0, 0.401);
        height: 90vh;
        margin-top:-50px;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
    }

    .card {
        display: grid;
        padding: 50px;
    }
    
    .card-item {
        display: grid;
        grid-template-rows: auto 1fr; 
        padding: 15px ;
        background-color: #76a1e099;
        text-align: center; 
        width: 100vw;
        margin-left: -50px; 
        margin-right: -50px;
    }
    
    .bola {
        display: relative;
    }
    .subtitle {
        font-size: 5vw;
        color:white;
        text-align: center;
        width: 100%;
    }

    /*.plus {
        color: black;
        background-color: #809eccff;
        padding: 3px 18px;
        border-radius: 15px;
        border:1px solid black;
        margin-right: -30px;

    }*/

    .main-titles {
        display: flex;
        justify-content: space-between;
        margin: 10px 0;
        align-items: center;
    }
    
    .buttons-container {
        display: flex;
        justify-content: center; 
        gap: 60px; 
        width: 100%; 
    }


    .buttons-container button {
        border-radius: 20px;
        border: 3px solid black;
        box-shadow: 0 5px 0 rgba(0, 0, 0, 0.507);
        transition: all 0.1s ease;
        position: relative;
        top: 0;
        
    }
    .buttons-container button:active {
        top: 3px;
    
    }
    .card-item > button {
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .buttons-container img {
        width: 28vw; 
        height: auto;
    }

   .button-container a {
    position: relative;
    display: block;
    text-decoration: none;
   }

   .notification-button {
    position: absolute;
    top: 105px;
    left: 140px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 5px;
    background: orangered;
    color: white ;
    border: none;
    cursor: pointer;
    padding: 5px;  
    border-radius: 50%;
    width:30px;
    height: 30px; }
.notification-button span {
    margin-left: 5px;
}
    footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.774);
        padding: 10px 0;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); 
        z-index:1000;
        margin-top:20px;
      }
    
      .footer-container {
        max-width: 1200px; 
        margin: 0 auto; 
        display: flex;
        justify-content: space-evenly; 
        align-items: center; 
    
      }
      .footer-item {
        display: flex;
        align-items: center;
        padding: 0 30px; 
        border-right: 2px solid white; 
    }
    
    .footer-item:last-child {
        border-right: none; 
    }
    