* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: 'Courier New', Courier, monospace; /* Punk rock-inspired font */
    line-height: 1.6;
    background-color: #000;
    color: #fff;
}

header {
    background-color: #000;
    padding: 1rem 0;
    text-align: center;
}

.banner h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

section {
    padding: 40px 20px;
    margin: 20px 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
}

ul {
    list-style-type: none;
}

a {
    color: #fff;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
