* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 62,5%;
    font-family: 'Roboto Mono', monospace;
}
:root {
    --rose: #d30a40;
    --dark-rose: #970129;
    --grey: #e3e3e3;
    --blue: #0ebdd2;
    --celest: #0deef4;
    --light-black: #2c2c2c;
    --green: #085a4a;
    --yellow: #f6bd20;
}

h1 {
    margin: 20px auto;
    text-align: center;
}

/* ---- POKEDEX CONTAINER ---- */
.pokedex-container {
    width: 100%;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ---- LEFT SIDE ---- */
.left-side-container {
    width: 90%;
    min-width: 300px;
    max-width: 420px;
    min-height: 590px;
    margin: 10px 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--rose);
    border: 5px solid var(--light-black);
    border-radius: 20px;
}
.top {
    width: 98%;
    height: 80px;
    padding: 10px;
    display: flex;
    border: 2px solid var(--dark-rose);
    box-shadow: 1px 1px 2px var(--light-black);
    border-radius: 10px;
}
.top .luz-azul {
    width: 50px;
    height: 50px;
    background: url(assets/blue-circle.svg) no-repeat center;
    background-size: contain;
}
.top .luz-triple {
    width: 50px;
    height: 15px;
    margin-left: 20px;
}

.img-container {
    position: relative;
    width: 98%;
    margin: 10px auto;
    background-size: contain;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 1px 1px 5px var(--light-black);
    display: flex;
    justify-content: center;
    align-items: center;
}
.screen1 {
    width: 98%;
}
.pokeImg {
    position: absolute;
    top: 20%;
    height: 50%;
}

.titulo {
    width: max-content;
    min-width: 250px;
    height: 60px;
    padding: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--yellow);
    background-color: var(--green);
    border: 4px solid var(--light-black);
    border-radius: 10px;
}
.pokeNombre {
    margin-left: 10px;
}


.pokeInput {
    width: 250px;
    height: 30px;
    margin: 20px auto;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgb(223, 223, 223);
}


.buttons {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: space-between;
}
.buttons-left {
    height: 120px;
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.buttons-left .boton-fetch {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: url(assets/button.svg) no-repeat center;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
}

.select {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: space-between;
}
.select .btn-blue {
    width: 40px;
    height: 12px;
    background-color: var(--blue);
    border-radius: 10px;
    box-shadow: 2px 2px 3px var(--light-black);
}
.select .btn-green {
    width: 40px;
    height: 12px;
    background-color: var(--green);
    border-radius: 10px;
    box-shadow: 2px 2px 3px var(--light-black);
}
.d-pad {
    width: 80px;
    height: 80px;
}

/* ---- CENTER ---- */
.center-container {
    display: none;
    
}
.center-container .center {
    width: 100%;
    height: 605px;
}

/* ---- RIGHT SIDE ---- */
.right-side-container {
    width: 90%;
    min-width: 300px;
    max-width: 420px;
    height: min-content;
    min-height: 610px;
    padding: 5px 15px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--rose);
    border: 5px solid var(--light-black);
    border-radius: 20px;
}
.notch {
    width: 50%;
    height: 20px;
    margin: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.camera {
    width: 15px;
    height: 15px;
    background-color: var(--light-black);
    border-radius: 50%;
}
.speaker {
    width: 60px;
    height: 10px;
    background-color: var(--light-black);
    border-radius: 10px;
}
.screen2 {
    width: 96%;
    max-width: 350px;
    height: 450px;
    margin: 10px 0;
    color: var(--yellow);
    border: 4px solid var(--light-black);
    border-radius: 10px;
    font-size: 1.2rem;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: space-between;
}
.screen2 .tags {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.screen2 .stat-tag {
    font-weight: 700;
    height: 45px;
    width: 45%;
    min-width: 100px;
    max-width: 120px;
    padding-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-rose);
    border-radius: 10px;
}


.small-screen {
    width: 110px;
    height: 50px;
    color: var(--yellow);
    background-color: var(--green);
    border: 4px solid var(--light-black);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pantallita-container {
    width: 90px;
    height: 90px;
    background-color: #fff;
    border: 4px solid var(--light-black);
    box-shadow: 1px 1px 2px var(--light-black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.pantallita {
    width: 75px;
    height: 75px;
    
}