.introduction{
    background-image: url(../img/background_inicio.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: padding-box;
    background-position: center;
    height: max(50vh, 15rem);
    max-height: 3712px;
    width: 100%;
    display: flex;
    border-bottom: solid 1rem var(--nav-color-secundary);
}
.index-center{
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.introduction .index-center{
    height: max(50%, 15rem);
    min-width: 50%;
    background-color: #d84144ef;
    color: white;
    padding: 1rem;
}
button{
    border: 2px;
    border-style: solid;
    border-radius: 5px;
    background-color: var(--nav-color-secundary);
    border-color: black;
    cursor: pointer;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    height: 3rem;
    width: 100%;
}
.input-button{
    border: 2px;
    border-style: solid;
    border-radius: 5px;
    background-color: var(--nav-color-secundary);
    border-color: black;
    cursor: pointer;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    height: 3rem;
    margin-top: 1rem;
    width: 100%;
}
.input-button:hover{
    background-color: var(--nav-color);
}
button:hover{
    background-color: var(--nav-color);
}
.introduction a{
    min-width: min(100%, 25em);
    margin-top: 1rem;
}
.input-textarea{
    width: 40rem;
    height: 20rem;
    resize: none;
    border: 2px solid var(--nav-color-secundary);
    border-radius: 5px;
}