/* body {
    box-sizing: border-box;
    padding: 0px;
} */

.header {
    background-image: url(../assets/pokemon_bg.jpg);
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat; 
    height: calc(70vh - 56px);
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.navbarIconLink {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pokemonSearch {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 5px 5px white;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.card p strong {
    font-weight: bold;
    color: #007bff;
}

.text-danger {
    color: #dc3545;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

