body {
    font-family: Arial, sans-serif;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    z-index: 0;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-image:linear-gradient(rgba(255,255,255,0.5),rgba(255,255,255,0.5)), url("/imagenes/foto8.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    opacity: 0;
    animation: cargar-imagen 4s forwards;
    z-index:-1;
}

@keyframes cargar-imagen {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
}
header {
    background-color: hwb(15 9% 36%);
    padding: 0px;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    align-items: center;
    max-height: 140px;
    min-height: max-content;
    width: 100vw;
}
.marco {
    flex: 1;
    padding: 20px;
    max-width: 70%;
    height: calc(100vh - 190px);
    margin-left: 20px;
}
.logoDiv{
    position: relative;
    width: 110px;
    height: 110px;
    background-color: #fff; 
    border-radius: 50%;
    margin-left: 10px;
    margin-right: 10px;
}
.logo {
    position: relative;
    margin-left: 25px;
    height: 110px;
    width: 110px;
}
.buttons{
    width: max-content;  
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}
.texto {
    margin-bottom: 30px;
    height: 90%;
}
h1 {
    position: relative;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
#titulo{
    font-size: 30px;
}
h2 {
    font-size: 28px;
    position: relative;
    text-align: center;
    margin-bottom: 5px;
}
p {
    margin-top: 10px;
    line-height: 1.2;
    font-size: 20px;
    text-align: center;
    overflow-wrap: break-word; 
    word-wrap: break-word; 
    overflow-y: auto; 
    padding: 30px; 
    height: max-content;
    max-height: 50%;
}
button[type="button"] {
    border-width: 2px;
    border: 1px solid #fff;
    cursor: pointer; 
    margin: 0 auto; 
    height: 40px; 
    width: 105px;
    background-color: #fff;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    border: 5px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.9s ease-in-out;
}
button[type="button"]:hover {
    color: white;
    background-color:  rgb(215, 100, 28);
    box-shadow: 0 8px 16px whitesmoke; 
}
#home-button {
    color: #fff;
    background-color: rgb(215, 100, 28);
    box-shadow: 0 8px 16px whitesmoke; 
}
#obtener {
    position: relative;
    height: max-content;
    width: max-content;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
    background-color: rgb(242, 234, 115);
    color: black;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    border: 5px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
#obtener[type="button"]:hover {
    color: white;
    background-color:  rgb(215, 100, 28);
    box-shadow: 0 8px 16px yellow; 
}
.resaltado {
    background-color: lightblue;
    font-weight: bold;
}
.disminuir {
    font-size:14px;
}