@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #2d2f34;
    font-family: "Poppins";
}

li, a, button{
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    background-color: #3f3f6b;
    z-index: 999;
}

.logotipo{
    color: #fff;
    font-size: 35px;
    font-weight: bold;
}

.nav-links{
    list-style: none;
}
.nav-links li{
    display: inline-block;
    padding: 0px 20px;
}

.nav-links li:hover{
color: #6090d7
}

button{
    padding: 10px 20px;
    background-color: #4771d0;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    margin-left: 15px;
}

button:hover{
    background-color: #3961fc;
}

.mimikyu{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Arial";
    gap: 16px;
    background-image: url("img/mimikyu-esci8l87vy7ct4tp.jpg");
}

.pikachu{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Arial";
    gap: 16px;
    background-image: url("img/cute-pokemon-pikachu-rain-desktop-wallpaper-cover.jpg");
}

.squirtle{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Arial";
    gap: 16px;
    background-image: url("img/thumb-1920-1357289.png");
}

.card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    width: 440px;
    height: 660px;
    border-radius: 12px;
    box-shadow: 4px 4px 12px #aaaaaa;
}

.card div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 50%;
}

.card img{
    width: 80%;
    display: block;
    margin: 0 auto;
}

.card h1{
    font-size: 64px;
    color: #aaaaaa;
}

.card span{
    font-size: 32px;
    color: #aaaaaa;
}

.card button{
    background-color: #aaaaaa;
    height: 30px;
    border: none;
    padding: 4px;
    width: 80%;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 12px;
}

@media (max-width: 800px){
    li, a, button{
        font-size: 12px;
        
}
.logotipo{
    font-size: 22px;
}
}

@media (max-width: 750px) and (min-width:300px){
    li, a, button{
        font-size: 7px;
        
}
.logotipo{
    font-size:4px;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 4px;
    background-color: #3f3f6b;
}



}