:root{
    --font-size: 16px;
    --text-color-blue:#22407C;
}

body{
    /* margin-top: 20px; */
    display: flex;
    align-items: center;
    justify-content: center; 
    font-family: "Montserrat"; 
    /* background-color: blue; */
    overflow: auto;
    min-height: 100vh;
}
.container{
    min-width: 300px;
    width: 100%;
    max-width: 440px;
    min-height: 100vh;
    max-height: 1200px;
    border: 1px black solid ;
    /* border-radius: 20px; */
    padding: 0px 10px 50px 10px;
    background-image: url(/assets/images/fondo_corregido.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}
.container__absolute{
    position: absolute;
    top: 0;
}
.header{
    font-family: 'Montserrat';
    /* width: 80%; */
    height: 233px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    /* background-color: red; */
}
.picture_container{
    height: 150px;
    /* padding: 15px 0px 13px 0px; */
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.picture__image{
    width: 130px;
    height: 130px;
}
.header__name{
    font-weight: 900;
    font-size: 1.6rem;
    text-align: center;
    text-transform: capitalize;
    font-weight: bold;
    margin: 0px 0px 10px 0px;
    padding: 0px;
    color: white;
}
.header__subtitle{
    text-transform: uppercase;
    text-align: center;
    font-size: 0.7rem;
    background-color: #2EF2F2;
    width: 150px;
    display: inline-block;
    width: auto;
    padding: 3px;
    border-radius: 2px;

}
.header__description{
    font-weight: 300;
    font-size: 0.8rem;
    text-align: center;
    color: white;
}
.main{
    display: flex;
    flex-direction: column;
    align-items: center;

}
.button__container a:hover {
    background-color:#2EF2F2 ;
    color: white;
}
.button__a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width:  170px;
    width: 90%;
    height: 35px;
    margin: 7px 0px;
    cursor: pointer;
    font-size: 0.98rem;
    text-decoration: none;
    color: var(--text-color-blue);
    background-color: white;
    text-align: center;
}
.button__shadow {
    border: 4px solid white;
    border-radius: 30px;
    box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, 0.4);
} 
.button__a:hover {
    box-shadow: inset 0px 0px 5px 2px rgba(34, 64, 124, 0.4);
    transition: 0.3 ease-in-out;
    color: white;
}
.footer {
    margin: 90px 0px 0px 0px;
    width: 80%;
    min-width: 250px;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer__text {
    color: white;
    opacity: 0.9;
    font-size: 0.68rem;
    text-align: center;
}
