/*
Color palette used: https://colorhunt.co/palette/3a3845f7ccacc69b7b826f66
Background color: #3A3845
Titles color: #C69B7B
Text color: #F7CCAC
Separation lines color: #826F66
*/

/*IMPORTS*/
@font-face {
    font-family: Louis;
    src: url(../Fonts/Louis.ttf);
}

/*GENERALS*/
html {
    height: auto;
    min-height: 100%;
}

video {
    width: 75%;
    height: auto;
    display: block;
    border-color: black;
    border-width: 10px;
    border-style: solid;
}

body{
    height: auto;
    min-height: 100%;
    background-color: #3A3845;
    font-family: Louis;
}

span{
    display: inline-block;
}

a{
    color: #F7CCAC;
    text-decoration: none;
}

h1{
    font-size: xx-large;
}

h1, h2, h3{
    color: #C69B7B;
    font-style: italic;
}

textarea{
    height: 15pc;
}

table{
    color: #F7CCAC;
    font-size: 17px;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

/*CLASSES*/
.text{
   color: #F7CCAC;
   font-size: 25px;  
   text-align: justify;
   text-justify: inter-word;
}

.footer{
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   text-align: center;
   background-color: #222;
}

.pokemonWrapper {
    overflow-x: auto;
    width: 100%;
}

.pokemonFrame{
    width: 1400px;
    height: 325px;
    border: none;
    display: block;
    margin: 0 auto;
    /*
    overflow: hidden;
    */
    
    overflow-x: auto;
}

.formButton{
    font-family: Louis;
    font-size: 17px;
    width: 49%;
    height: 3pc;
    margin-left: auto;
    margin-right: auto;
}

.formButtonsDiv{
    width: 80%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
}

.link:hover{
    cursor:pointer;
}

.hSeparator{
    border: 0.5px;
    border-style: solid;
    border-color: #826F66;
}

.gameCapture{
    max-width: 45%;
    height: auto;
    border: 2px solid black;
}

.contentDiv{
    width: 75%;
    margin: auto;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;  
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.inner_section {
    padding-bottom: 4rem;
    overflow: auto; /* o hidden */
}

.sections{
    text-align: center;
    word-spacing: 5pc;
    font-size: 200%;
    width: 100%;
}

.link{
    text-decoration: underline;
    font-size: 25px;
}

.imgBlock {
    display: flex;
    flex-direction: row;
    gap: 10px; /* espacio entre imágenes */
    justify-content: center; /* opcional, centra las imágenes */
    align-items: center; /* alinea verticalmente si tienen diferente altura */
    flex-wrap: wrap; /* para que bajen en pantallas pequeñas */
}

.centeredForm{
    width: 35%;
    margin-left: auto;
    margin-right: auto;
}

.input{
    font-family: Louis;
    font-size: 17px;
    margin-left: 2%;
    width: 30pc;
}

/*IDS*/
#gameDiv{
    width: 1250x;
    left: 0;
    right: 0;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
}

#geometricWarsImg{
    width: 20pc;
}

#div_games{
    text-align: center;
    font-size: larger;
    width: 100%;
}

#img_myself{
    padding-top: 25px;
    width: 100%;
    min-width: 15vh;
}
.cv_wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#img_cv {
    max-width: 100%;
    max-height: 90vh;
    border: 4px solid black;
    object-fit: contain;
}
#current{
    font-weight: bold;
    color:azure;
}