/* style.css */

@font-face {
    font-family: "Pokemon";
    src: url("fonts/Pokemon Classic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #000;
    color: #fff;
    font-family: "Pokemon";
    padding: 2rem;
    line-height: 1.6;
    text-align: center;
}


a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #ff00ff;
    text-decoration: underline;
}

h1 {
    font-size: 2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: red;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

footer {
    margin-top: 3rem;
    font-size: 0.9em;
    color: #888;
}