/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* 2000s Inspired Website CSS */

/* Global styles */
body {
    font-family: "Comic Sans MS", cursive, sans-serif;
    background: #ffccff url('https://www.transparenttextures.com/patterns/pw-maze-white.png') repeat;
    color: #000080;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    background: linear-gradient(to right, #ff6699, #ffcc33);
    color: white;
    padding: 30px;
    border-bottom: 3px double #000080;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

header h1 {
    font-size: 3em;
    text-shadow: 2px 2px #ff00ff;
}

/* Navigation Bar */
nav {
    background: #00ccff;
    padding: 10px;
    border-top: 3px solid #ff00ff;
    border-bottom: 3px solid #ff00ff;
}

nav a {
    color: #ffff00;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
    padding: 5px 10px;
    background-color: #ff00ff;
    border: 2px outset #ffff00;
    border-radius: 5px;
    transition: all 0.2s;
}

nav a:hover {
    background-color: #ffff00;
    color: #ff00ff;
    border-style: inset;
}

/* Main content */
main {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 3px dashed #ff00ff;
    margin: 20px auto;
    width: 80%;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
}

/* Buttons */
button {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 1.2em;
    color: #ffffff;
    background: linear-gradient(to bottom, #ff6699, #cc00cc);
    border: 2px outset #ffff00;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    text-shadow: 1px 1px #000000;
}

button:hover {
    background: linear-gradient(to bottom, #cc00cc, #ff6699);
    border-style: inset;
}

/* Footer */
footer {
    background-color: #000080;
    color: #ffffff;
    padding: 15px;
    border-top: 3px double #ff00ff;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.5);
}

/* Fun animated marquee style (very 2000s) */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    border: 2px dashed #ff00ff;
    padding: 10px 0;
    background-color: #ffff00;
    color: #ff00ff;
    font-weight: bold;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
