/* 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." */

/* Grunge background */
body {
    background: #0d0d0d url('https://i.imgur.com/PAQIwSi.jpg') repeat;
    color: #c9c9c9;
    font-family: 'Special Elite', monospace;
    cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur114.cur'), auto;
    margin: 0;
    padding: 0;
}

/* Container with a messy shadow */
.container {
    max-width: 800px;
    margin: auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    border: 1px solid #2a2a2a;
    box-shadow: 0 0 25px rgba(255, 0, 100, 0.3);
}

/* Title */
h1 {
    font-family: 'VT323', monospace;
    font-size: 55px;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff007f;
}

/* Links */
a {
    color: #9f9f9f;
    text-decoration: none;
    border-bottom: 1px dashed #444;
    transition: 0.2s;
}

a:hover {
    color: #ff2089;
    text-shadow: 0 0 10px #ff3ea5;
    border-bottom: 1px dashed #ff3ea5;
}

/* Nav menu */
nav {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

/* Content box */
.content {
    background: rgba(15, 15, 15, 0.6);
    padding: 20px;
    border: 1px solid #333;
    font-size: 17px;
}
