body {
    font-family: 'Poppins', sans-serif;
    max-width: 1280px;
    margin: 0 auto;
    background-image: url("../imagens/Morning.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body.dark-theme {
    background-image: url("../imagens/Night.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 25px;
}

header .logo,
header .button {
    width: 30px;
    transition: 0.2s ease-in-out;
}

header #button-theme {
    background: none;
    border: none;
}

header .logo:hover,
header .button:hover,
main .card:hover {
    transform: scale(1.10);
    cursor: pointer;
}

main {
    padding: 25px;
}

.list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    width: 200px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #413f3f;
    background-color: #bfe7d16e;
    border: 1px solid #888888;
    border-radius: 15px;
    transition: 0.2s ease-in-out;
}

.card:hover {
    background-color: #a7d5d6d0;
}

.dark-theme .card {
    background-color: #515b7cc7;
    color: #111111;
    border: 1px solid #111111;
    border-radius: 15px;
    transition: 0.2s ease-in-out;
}

.dark-theme .card:hover {
    background-color: #5e6a94e8;
}

.dark-theme .info {
    display: flex;
    justify-content: space-between;
    border: 1px solid #111111;
    border-radius: 10px;
}

.info {
    display: flex;
    justify-content: space-between;
    border: 1px solid #888888;
    border-radius: 10px;
}

.info span {
    padding: 5px;
    text-transform: uppercase;
    font-size: 17px;
}

.card .gif {
    width: 90px;
    height: 90px;
}

.types {
    display: flex;
    gap: 15px;
}

.type {
    padding: 8px;
    border-radius: 10px;
}

.grass {
    background-color: #70c239;
}

.poison {
    background-color: #f34343fb;
}

.fire {
    background-color: #e77b28;
}

.water {
    background-color: #5b81d3;
}

.bug {
    background-color: #879615;
}

.description {
    max-height: 80px;
    overflow-y: scroll;
    font-size: 14px;
    padding-right: 10px;
}

/* fooder */
.link {
    width: 12px;
    margin-top: 30px;
    transition: 0.2s ease-in-out;
}

.link:hover {
    transform: scale(1.06);
    cursor: pointer;
}

a {
   text-decoration: none; 
}

a:hover {
    text-decoration: underline;
}

abbr {
    text-decoration: none;
}