body {
    background-image: url(../Assets/Pokeball-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

form {
    color: #555;
    background-color: white;
    display: flex;
    padding: 2px;
    border: 1px solid currentColor;
    /* border-radius: 5px; */
    border-radius: 10px;
}

.iconBtn {
    min-width: 48px;
    max-height: 48px;
}
@media screen and (max-width: 640px){
    .iconBtn{
        min-width: 40px;
        max-height: 40px;
    }
}

.white-box {
    background-color: #FAFAFAE6;
    border: 1px solid currentColor;
}

.white-box h2 {
    font-size: 24px;
}
.favorite-sidebar{
    background-color: #212121E6;
    height: 100%;
    width: 293px;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    color: whitesmoke;
}
.favorite-sidebar li{
    padding-bottom: 8px;
    font-size: 24px;
}

.main-grid {
    display: grid;
    grid-template-columns: 470px 1fr;
    max-width: 1128px;
}

