@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');


.dm-sans-font {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.nunito-sans-font {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings:
      "wdth" 100,
      "YTLC" 500;
}

h1{
    font-family: "DM Sans", sans-serif;
    font-size: 2.7rem;
}

body {
    font-family: "Nunito Sans", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    width: 100%;
    height: 100%;
}

.navbar {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.titulo {
    color: black;
    font-size: 2rem;
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

.text-center {
    text-align: center;
}

.contenido {
    background-color: white;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.main-text{
    padding-left: 20%;
    padding-right: 20%;
}
h2 {
    color: #333;
}

p {
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

ul{
    font-family: "Nunito Sans", sans-serif;
    color: #666;
    text-align: justify;
}
.fixed-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
}

.btn-declinar, .btn-aceptar, .btn-leermas {
    padding: 10px 20px;
    margin: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-declinar {
    font-family: "Nunito Sans", sans-serif;
    background-color: #972316;
    color: white;
    display: none;
}

.btn-aceptar {
    font-family: "Nunito Sans", sans-serif;
    background-color: #145730;
    color: white;
    display: none;
}

.btn-leermas{
    font-family: "Nunito Sans", sans-serif;
    background-color: #222222;
    color: white;
    text-align: center;
    margin: 15px auto;
}




/* Media Query for Tablets (between 768px and 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .titulo {
        font-size: 1.3rem;
    }

    h1{
        font-size: 1.8rem;
    }

    p{
        font-size: 1rem;
    }
    
    ul{
        font-size: 1rem;
    }
    .main-text{
        padding-left: 20px;
        padding-right: 20px;        
    }

    .btn-declinar, .btn-aceptar, .btn-leermas {
        padding: 7px 7px;
        font-size: 0.7rem;
        border-radius: 5px;
    }
}

/* Media Query for Mobile Devices (less than 768px) */
@media (max-width: 767px) {
    .titulo {
        font-size: 1rem;
    }

    h1{
        font-size: 1.5rem;
    }
    p{
        font-size: 0.78rem;
    }
    ul{
        font-size: 0.78rem;
    }
    .main-text{
        padding-left: 5px;
        padding-right: 5px;        
    }
    
    .btn-declinar, .btn-aceptar, .btn-leermas {
        padding: 7px 7px;
        font-size: 0.7rem;
        border-radius: 5px;
    }
}