body {
    margin: 0;
    min-height: 110vh;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    scrollbar-gutter: stable;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -999;
    background-image: url('../img/pokeball-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

#scroll-down {
    width: 60%;
    position: absolute;
    bottom: 0;
}

/* #load-btn {
    width: clamp(160px, 50%, 400px);
    margin: 100px 0;
    font-size: 1.5rem;
    padding: 16px;
} */

/*--------------------------------------------------
Scrollbar
---------------------------------------------------*/
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: rgb(26, 135, 84);
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(19, 108, 67);
}

/*--------------------------------------------------
Header
---------------------------------------------------*/
header {
    height: 146px;
    padding: 0 5vw;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.pokedex-logo {
    height: 80px;
}

.search-container {
    display: flex;
    flex-flow: row wrap;
    max-width: 300px;
    justify-content: flex-end;
    align-items: flex-end;
}

#search-form {
    margin-top: 46px;
}

#reset-btn {
    width: 74px;
    margin-top: 8px;
}

#no-search-results {
    padding: 16px 32px;
    margin: 12px;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
    text-align: center;
    background-color: rgba(38, 46, 48, 0.8);
    box-shadow: 2px 2px 6px 0px rgb(26, 135, 84);
}