/* =========================
   GENERAL PAGE
   ========================= */

body {
    margin: 0;
    background-color: #000000;
    color: #ffffff;

    /* CHANGE THE FONT HERE */
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   MAIN CONTAINER
   ========================= */

.container {
    max-width: 600px;

    /* Centers the content horizontally */
    margin: 0 auto;

    /* Space around the page */
    padding: 60px 20px;

    text-align: center;
}


/* =========================
   EP COVER
   ========================= */

.cover {
    width: 400px;

    /* Prevents the cover from overflowing on phones */
    max-width: 100%;

    height: auto;

    display: block;

    /* Space below the cover */
    margin: 0 auto 40px auto;
}


/* =========================
   TITLE
   ========================= */

h1 {
    font-size: 32px;

    /* 400 = regular */
    font-weight: 400;

    letter-spacing: 1px;

    margin: 0 0 12px 0;
}


/* =========================
   RELEASE DATE
   ========================= */

.release {
    font-size: 18px;

    font-weight: 300;

    margin: 0 0 50px 0;
}


/* =========================
   LINK SECTIONS
   ========================= */

.links-section {
    margin-bottom: 50px;
}


/* Section titles:
   Listen / Social / Contact */

h2 {
    font-size: 15px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


/* =========================
   LINKS
   ========================= */

.links {
    display: flex;

    justify-content: center;

    /* Allows links to wrap on small screens */
    flex-wrap: wrap;

    gap: 12px;
}


.links a {
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    border: 1px solid #ffffff;

    padding: 10px 16px;

    transition: 0.2s;
}


/* What happens when you hover over a link */

.links a:hover {
    background-color: #ffffff;

    color: #000000;
}


/* =========================
   CONTACT
   ========================= */

.contact {
    margin-bottom: 70px;
}


.contact a {
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
}


.contact a:hover {
    text-decoration: underline;
}


/* =========================
   FOOTER
   ========================= */

footer {
    text-align: center;

    color: #666666;

    font-size: 12px;

    padding-bottom: 30px;
}
```
