* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.kantoBody {
    background-image: linear-gradient(to bottom right, blue, rgb(0, 255, 242));
}

.logo {
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
}

.kanto {
    margin: 5px 10px 20px 0;
    text-align: center;
    font-family: 'Prompt', sans-serif;
    font-size: 30px;
    color: white
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: rgba(0, 162, 255, 0.616);
}
.logoGen{
    color: white;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 15px;
}
.logoGen img{
    height: 20px;
    justify-content: center;
    margin: 0 40px;
}
.nav-links{
    display: flex;
    justify-content: space-around;
    width: 80%;
}
.nav-links li{
    list-style: none;
}
.nav-links a{
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 10px;
}
.burger{
    display: none;
    cursor: pointer;
}
.burger div{
    width: 20px;
    height: 2px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .nav-links{
        display: flex;
        justify-content: space-around;
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .appContainer{
        overflow-x: hidden;
        position: relative;
    } 
    .nav-links{
       position: absolute;
       right: 0px;
       height: 92vh; 
       top: 8vh;
       background-color: rgba(0, 162, 255, 0.616);
       display: flex;
       flex-direction: column;
       align-items: center;
       width: 50%;
       transform: translateX(100%);
       transition: transform 0.5s ease-in;
    }
    .nav-links li{
        opacity: 0;
    }
    .burger{
        display: block;
    }
}

.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,5px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-5px);
}

.t-header {
    background-color: black;
    display: block;
    color: white;
    margin: 0px;
    text-align: center;
    font-size: 30px;
}

.pokemonInfo {
    background-color: rgba(0, 255, 255, 0.438);
    font-family: 'prompt', sans-serif;
    margin: 0px;
}
.pokemonInfo p{
    background-color: rgba(0, 0, 255, 0.363);
    color: white;
}

p {
    margin: 0px;
}
.bulbasaur{
    text-align: center;
}
.pokePic {
    background-repeat: no-repeat;
    width: 300px;
    height: 300px;
}
h4{
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    color: white;
    margin: 0;
}
.normal{
    display: none;
}
.shiny{
    display: none;
}
.active{
    display: block;
}