@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    background-color: #000;
    background-image: url('../images/bg.gif'); /* Aquele fundo que dá dor de cabeça */
    color: #00ff00;
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    cursor: url('../images/cursor.png'), auto; /* CURSOR CUSTOMIZADO, PORRA! */
}

a {
    color: #ff00ff;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    background-color: #ff00ff;
}

.container {
    width: 800px;
    margin: 20px auto;
    border: 3px solid #00ff00;
    padding: 10px;
    background-color: rgba(10, 10, 10, 0.8);
    box-shadow: 0 0 15px #ff00ff;
}

header h1 {
    font-size: 20px;
    color: #ff00ff;
    text-shadow: 2px 2px #00ff00;
}

main {
    display: flex;
}

.sidebar {
    width: 200px;
    padding-right: 15px;
    border-right: 2px dashed #00ff00;
}

.sidebar h2 {
    font-size: 16px;
    border-bottom: 2px solid #ff00ff;
    padding-bottom: 5px;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
}

.sidebar nav li {
    margin-bottom: 10px;
}

.sidebar-img {
    margin-top: 20px;
    width: 100%;
}

.content {
    flex-grow: 1;
    padding-left: 15px;
}

.content h2 {
    font-size: 18px;
}

footer {
    margin-top: 20px;
    border-top: 2px dashed #00ff00;
    text-align: center;
    padding-top: 10px;
    font-size: 10px;
}

/* EFEITO DE TEXTO PISCANDO, CLÁSSICO */
.blink {
    animation: blinker 1s linear infinite;
    color: #ff0000;
    font-weight: bold;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* O RASTRO DO MOUSE FDP */
.trail {
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 3px;
    background: #ff00ff;
    z-index: 9999;
    pointer-events: none; /* Pra não atrapalhar os cliques, animal */
}