@import url('https://fonts.googleapis.com/css?family=Quicksand&display=swap');

/* 
#2D0140
#010326
#56BF5D
#F2CA50
#F28B30
*/

*{
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Quicksand', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

/* HEADER START*/
header {
    margin: 0 auto;
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    justify-content: center;
}

.poke_main {
    text-align: center;
    cursor: pointer;
    transition: display .3s ease-in-out;
}

.poke_main:before{
    content: 'Random';
}
.search {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.search-field {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #010326;
}

.search-field:focus {
    outline:none;
}

.search-button {
    background-color: #fff;
    border: 2px solid #010326;
    padding: 5px;
    cursor: pointer;
    border-radius: 100%;
    transition: background-color .2s ease-in-out;
}

.search-button:hover {
    background-color: #010326;
}

.search-button:hover img{
    filter: invert(100%)
}

.search-button img {
    height: 20px;
    width: 20px;
}

/* HEADER END*/

.loader{
    margin: 0 auto;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 15px solid #f3f3f3;
    border-top: 15px solid #56BF5D;
    animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* MAIN START*/

main {
    display: flex;
    flex-direction: column;
}

.search-result {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-result h1{
    text-transform: capitalize;
    text-align: center;
    font-weight: 900;
    font-size: 40px;
}

.search-result p{
    font-size: 18px;
}

.search-result-img {
    margin: 0 auto;
}

.search-evo-chain {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    padding-bottom: calc(20vh + 10px);
}

.evo {
    text-decoration: none;
    color: #010326;
    text-align: center;
}


@media screen and (min-width: 1024px){
    .search-result h1{
        font-size: 50px;
    }
    
    .search-result p{
        font-size: 24px;
    }
}

/* MAIN END*/

/* FOOTER START*/
footer{
    border-top: 5px solid #56BF5D;
    width: 100%;
    height: 20vh;
    background-color: #010326;
    bottom: 0;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.random_btn {
    color: #fff;
    text-align: center;
}

.poke-random-result {
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: flex-end;
    margin: 0 auto;
}

.random-result {
    flex-basis: 25%;
    text-decoration: none;
    color: #fff;
}

.relative {
    position: relative;
}

.random-result-img{
    width: 90%;
}

.random-result-name {
    text-transform: capitalize;
}


@media screen and (min-width: 512px){
    .poke-random-result {
        width: 60vw;
    }
}

@media screen and (min-width: 1024px){
    .poke-random-result {
        width: 40vw;
    }
}

@media screen and (min-width: 1440px){
    .poke-random-result {
        width: 30vw;
    }
}

/* FOOTER END*/