/* FILEPATH: /home/ere/Github/-3_Pokedex/style.css */

body,
html {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-image: url("img/uwp4268418.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: auto;
}
ul,
li {
list-style-type: disclosure-closed;
}

.sticky-top {
    position: fixed !important;
    top: 0;
    z-index: 1020;
    width: 100%;
    margin-bottom: 40px !important;
    box-shadow: 0 5px 20px 0 rgba(10, 10, 10, 0.25), 0 2px 10px 0 rgba(10, 10, 10, 0.25);
}

.renderCards {
    min-height: 50dvh;
    margin: 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

#smallCards {
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 60px;
}

#bigCard {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 110;
}

.cardSmall {
    background-image: url(img/pokemon-bg.png);
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: sticky;
    padding: 2.5rem;
    height: 16rem;
    border: 1px solid transparent;
    border-radius: 2rem;
    width: 16rem;
    margin: 3.5rem 2rem;
    margin-top: -1rem;
    cursor: pointer;
    transition: all .2s;
}

.cardSmall:hover {
    transform: scale(1.1);
    transition: all .2s;
    box-shadow: 0 5px 20px 0 rgba(10, 10, 10, 0.25), 0 2px 10px 0 rgba(10, 10, 10, 0.25);
}

.sortCard {
    display: -webkit-inline-box;
    justify-content: space-between;
    align-items: center;
}

.textBlock {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rotate {
    animation: rotation 2s infinite linear;
}

.cardTitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: -0.5rem;
    text-align: center;
    display: block;
    position: relative;
    top: -6px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.cardNumber {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: -0.5rem;
    text-align: center;
}

.cardTitle2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: -0.5rem;
    display: flex;
    justify-content: center;
    width: 5.25rem;
    border: solid 1px transparent;
    border-radius: 1rem;
    margin-top: 0.36rem;
    position: relative;
    top: 48px;
}

.alignContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.small-pic {
    width: 50%;
}

.imageSmall {
    width: 10rem;
    height: 10rem;
    margin-left: -1rem;
    position: relative;
    top: 20px;
}

#front {
    width: 25rem;
    height: 25rem;
    margin-left: 1rem;
    margin-top: -2rem;
    z-index: 100;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.footerContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bug-icon);
}

.pokemonCard {
    height: 40rem;
    display: flex;
    flex-direction: column;
    width: 24rem;
    border-radius: 1rem;
    z-index: 110;
}

.pokeCard-upper-wrapper {
    display: flex;
    flex-direction: column;
    height: 40%;
    width: 100%;
}

.pokeCard-lower-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 60%;
    width: 100%;
    background-color: whitesmoke;
    border-radius: 1rem;
    padding-bottom: 20%;
}

.btn-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 20%;
    background-color: #333333;
    border-radius: 0 0 1rem 1rem;
    display: flex;
    flex-direction: row;
}

.nav-btn-overview {
    width: 50%;
    height: 3rem;
    background-color: red;
    border-radius: 0 0 0 1rem;
}

.nav-btn-stats {
    width: 50%;
    height: 3rem;
    background-color: blue;
    border-radius: 0 0 1rem 0;
}

.content-upper-wrapper {
    height: 100%;
    width: 100%;
    padding-bottom: 100%;
}

.content-lower-wrapper {
    height: 100%;
    width: 100%;
}

.pokeImg2 {
    width: 20rem;
    margin-top: 2rem;
    margin-left: 7rem;
}

.overlay {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 100;
    overflow: hidden;

}

.upper-wrapper-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}