body {
    background-color: #0d0d0d;
    color: #b180ff;
    font-family: Courier New, monospace;
    margin: 0px;
    padding: 0;
    background-image: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
    cursor: url('https://cur.cursors-4u.net/cursors/cur-11/cur1043.cur'), auto;
}

header {
    background: #bb88ff;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px #bb88ff;
}

nav {
    flex-wrap: wrap;
}

nav a {
    color: black;
    text-decoration: none;
    margin: 0px 15px;
    font-weight: bold;
    font-size: 1.2em;
    transition: 0.3s ease;
}

nav a:hover {
    color: white;
    text-shadow: 0 0 5px #fff;
}

.main {
    padding: 40px 20px;
    text-align: center;
}

.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 2em;
    font-weight: bold;
    color: #d87fff;
    text-shadow: 0 0 10px #bb88ff;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #bb88ff, 0 0 20px #bb88ff;
    }
    100% {
        text-shadow: 0 0 20px #ff66ff, 0 0 30px #ff66ff;
    }
}

.tagline {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 40px;
    color: #9966ff;
}

.box {
    border: 2px double #bb88ff;
    padding: 30px;
    background-color: #111;
    max-width: 800px;
    margin: 20px auto 0;
    box-shadow: 0 0 10px #8844ee;
}

.guestbook {
    margin-top: 40px;
    padding: 20px;
    background: #1b001b;
    border: 2px dashed #ff99ff;
    color: #ffccff;
    font-size: 0.9em;
}

.guestbook textarea {
    width: 100%;
    max-width: 100%;
    height: 100px;
    background: #0d0d0d;
    color: #ffccff;
    border: 1px solid #bb88ff;
    font-family: monospace;
    padding: 10px;
}

.guestbook button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #bb88ff;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

footer {
    text-align: center;
    margin-top: 60px;
    color: #bb88ff;
    font-size: 0.9em;
    font-weight: bold;
}

.dollar {
    color: #bb88ff;
    font-size: 2em;
}

.blink {
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

marquee {
    color: #ff99ff;
    background: #1a001a;
    padding: 5px;
    font-weight: bold;
    border-top: 1px solid #bb88ff;
    border-bottom: 1px solid #bb88ff;
}

.netscape-icon {
    margin-top: 30px;
    display: inline-block;
}

.netscape-icon img {
    width: 88px;
    height: 31px;
    border: 1px solid #bb88ff;
}

        /* mobile shit */
        @media (max-width: 768px) {
            .logo {
                font-size: 1.2em;
            }
        
            nav a {
                display: inline-block;
                margin: 10px 8px;
                font-size: 1em;
            }
        
            .tagline {
                font-size: 1em;
                padding: 0 10px;
            }
        
            .box,
            .guestbook {
                width: 90%;
                padding: 20px;
            }
        
            .guestbook textarea {
                width: 100%;
            }
        
            .netscape-icon img {
                width: 70px;
                height: auto;
            }
        }