* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f0f0f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


header {
    background-color: #3b5998;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    width: 100%;
}

.logo img {
    width: 200px;
}

.pokedex-title {
    color: black;
    font-size: 24px;
}

nav {
    display: flex;
}

nav a {
    color: #ff0000;
    text-decoration: none;
    padding: 0 15px;
    font-weight: bold;
}

.content {
    display: flex;
    flex: 1;
}

aside {
    width: 20%;
    background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    color: white;
    padding: 20px;
}

aside p {
    margin: 10px 0;
}

.pack-card {
    margin-top: 20px;
}

.pack-card img {
    width: 100%;
    border-radius: 10px;
}

main {
    width: 80%;
    padding: 20px;
    background-image: linear-gradient(180deg, white, rgb(36, 83, 121));
}

.construction-notice {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.pokeball-container {
    text-align: center;
    margin: 30px 0;
}

.pokeball-img {
    width: 200px;
    border: 5px solid white;
    background-image: linear-gradient(180deg, rgb(74, 33, 255), rgb(152, 209, 255));
}

.main-text {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
}

footer {
    background-color: #3b5998;
    color: white;
    text-align: center;
    padding: 15px;
    width: 100%;
}

footer p {
    margin: 5px 0;
}