@font-face {
    font-family: charter;
    src: url('/fonts/charter-regular.otf');
    font-style: normal;
    font-weight: 400;

}

@font-face {
    font-family: charter;
    src: url('/fonts/charter-italic.otf');
    font-style: italic;
    font-weight: 400;

}

@font-face {
    font-family: charter;
    src: url('/fonts/charter-bold.otf');
    font-style: normal;
    font-weight: bold;

}

@font-face {
    font-family: charter;
    src: url('/fonts/charter-bold-italic.otf');
    font-style: italic;
    font-weight: bold;

}

:root{
    font-size: 18px;
    --white30: white;
    --white20: #A5A3A5;
    --white10: #3A3539;
}


body {
    
    background: #251F24;
    color: var(--white30);
    font-family: 'Nunito', sans-serif;
    margin: 0;

    /* font-family: charter; */
}

a{
    color:  var(--white30);
}

.header{
 
}
.header-content{
    padding-inline: 20px ;
}

header{
    margin-block-start: 20px;
    /* --white10: red; / diferente manera de declarar variables en css
    para algo en especifico*/
    font-size: 14px;
    color: var(--white);
    /* top */
    /* bottom */
    /* inset-block-end: 0; */
    /* left */
    inset-inline-start: -208px;
    /* right */
    /* inset-block-end: 0; */
    inline-size: 188px;

}

header li{
    color: var(--white20);
    margin-block-end: 16px;
}

header a{
    color: var(--white20);
    text-decoration: none;
}
header a:hover{
    color: var(--white);
}

nav details summary{
    font-weight: bold;
}

h1,h2,h3{
    font-weight: normal;
}

h1{
    font-size: 40px;
    margin-block-start: 20px;
    margin-block-end: 16px;
    /* font-size: 3.75em; */
}

h2{
    font-size: 3em;
    margin-block: 40px;
}

h3{
    font-size: 1.5em;
    font-weight: 600;
    margin-block: 16px;
}

hr{
    margin-block: 40px;
    border-color: rgba(97, 97, 97, 0.2);
}

pre{
    background: var(--white10);   
    padding: 40px;
    overflow: auto;
    /* border-radius: 8px;
    border: 1px solid red;
    border-left: 5px solid blue;
    border-inline-start: 5px solid white;
    border-block-start: 20px solid red;
    border-block-end: 20px solid pink;
    border-inline-end: 5px solid green;
    border-block-start-color: blue ; */

    border: 10px solid #5551FF;
    box-shadow: -10px 10px 0 0 #ABAAF6;
    /* margin-block-end: 30px;
    border-radius: 50px; */
    border-start-start-radius: 60px;

}

p{
    color: var(--white20);

}



.hero{
    background: linear-gradient(96.07deg, #314755 30.63%, #26A0DA 102.18%);
    block-size: 50px;
}

.section-content img{
    margin-block-start: 40px;
    display: block;
    max-inline-size: 100%;
    /* max-width: 100%; */
}


.section-content{
    counter-reset: titleList;
}

.section-content h3{
    counter-increment: titleList;
}

.section-content h3::before{
    content: counter(titleList) ". ";
}

/* .section-content h3::after{
    content: '-';
    height: 4px;
    background: var(--white15);
    display: inline;
} */

blockquote{
    margin-block-start: 80px;
    margin-block-end: 63px;
    background: var(--white10);
    border-radius: 8px;
    line-height: 32px;
    font-size: 24px;
    padding: 24px;
}

blockquote p{
    color: var(--white30);

}

.main hr{
    display: none;
}

.main{

}

.wrapper{
    max-inline-size: 800px;
    margin: auto;
}

.main-content{
    
    padding-inline: 16px;
}

.slider{
}

.slider-container{
    display: block;
    overflow: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    overflow-x: hidden;
    font-size: 0;
    /* border: 1px solid purple; */
}

.video{
    margin: 0;
    display: inline-block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}
.slider-bullet-list{
    text-align: center;
    margin-block-start: 10px;
}
.slider-bullet{
    display: inline-block;
    inline-size: 15px;
    block-size: 15px;
    background: white;
    border-radius: 50%;

}

.form input{
    inline-size: 100%;
    border: 1px solid var(--white30);
    background: #251F24;
    box-sizing: border-box;
    border-radius: 8px;
    padding-inline: 16px;
    padding-block: 12px;
    color: var(--white30);
    font-size: 16px;
    display: block;
    margin-block-end: 24px;
}

.form input[type="submit"]{
    background: #157EFB;
    border: none;
}

.form ::-webkit-input-placeholder{
    color: var(--white20);
}

@media screen and (min-width:1366px){
    .hero{
    block-size: 350px;

    }
    .header{
        position: sticky;
        inset-block-start: -45px;
    }
    .header-content{
        position: relative;
        inset-block-start: 0px;
        padding-inline: 0;
    }
    header{
        position: absolute;
        inset-block-start: 65px;
        inset-inline-start: -208px;    
        inline-size: 188px;
    }
    h1{
        font-size: 60px;
        margin-block-start: 64px;
    }
}

 
/* 
::selection{
    background: green;
} */