
body{
    height: 100vh;
    margin: 0;  
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 34, 46, 0.9);
    border-radius: 4px;
    border: 1px solid rgba(30, 66, 77, 1);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(10, 44, 56, 1);
}

::-webkit-scrollbar-track {
    background: linear-gradient(
        to bottom, 
        rgba(0, 34, 46, 1),
        rgb(0, 24, 35),
        rgba(0, 34, 46, 1)
    );
}

.content{
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 24, 34, 1);
}

.card{
    cursor: pointer;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.card-top{
    background-color: rgba(0, 36, 47, 1);
    border-radius:6px 6px 0 0;
    color: white !important;
}

.card-bottom{
    background-color: rgba(0, 36, 47, 1);
    border-radius: 0 0 6px 6px;
}

.types{
   border: 1px solid rgba(0, 0, 0, 0.5);
   border-radius: 4px;
   padding: 2px 6px;
   margin: 4px;
}

.bg-dark-blue{
    background-color: rgba(0, 36, 47, 0.8) !important;
}

.bg-blur{
    backdrop-filter: blur(10px); 
}

.border-bottom-blue{
    border-bottom:1px solid rgba(20, 56, 67, 1);
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.5);
}

.border-top-blue{
    border-top:1px solid rgba(20, 56, 67, 1);
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.5);
}

.input-color{
    background-color: rgba(0, 36, 47, 0) !important;
    border-color: rgba(30, 66, 77, 1) !important;
}

input:focus{
    box-shadow: 0px 0px 4px 2px rgba(30, 66, 77, 0.8)!important;
}

.height-72px{
    height: 72px !important;
}

footer{
    position: fixed;
    bottom:0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

button{
    height: 40px;
    width: 18rem;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.5);
    border-color: rgba(30, 66, 77, 1) !important;
    cursor: pointer;
}

.more-pokemon-button-margin{
    margin: 2rem 0 6rem 0!important;
}

button:hover{
    box-shadow: 0px 0px 1px 1px rgba(40, 76, 87, 1)
}

.d-none{
    display: none;
    pointer-events: none;
}

.nav-link{
    color: white !important;
    border: 1px solid rgba(30, 66, 77, 0.5) !important;
    margin: 0 2px 0 2px;
}

.nav-link:hover{
   color: rgba(50, 86, 97, 1) !important;
}

.nav{
    background-color: rgba(0,0,0,0) !important;
}

@media (max-width: 360px){
    .hide{
        display: none;
    }

    .navbar-icon{
        height: 32px !important;
        margin-top: 5px;
    }
}