@font-face {
    font-family: "Velvelyne";
    src: url("fonts/Velvelyne-Regular.ttf") format("truetype");
}

* {
    
}

body {
    margin-top:0;
    padding-top:0;
    font-family: 'Velvelyne', Courier, monospace;
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    align-items: center;
    background-color: black;
    color: white;
    background-image: url("condannic.jpg");
    background-position: 50% 10vw;
    background-blend-mode:hard-light;
    background-repeat: no-repeat;
    background-size: cover;
}

h1 {
    font-family: "Trickster", serif;
    text-align: center;
    font-size: 3em;
}

h2 {
    font-size: 1em;
    text-align: center;
}

a {
    color:white;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #ff46be;
}

header {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    justify-items: center;
    padding: 0em;
    margin: 0;
    width: 100vw;
    background-color: black;
}

main {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 10rem;
    max-width: 90%;
}

button {
    font-family: 'Velvelyne', Courier, monospace;
    font-size: 1em;
    color: white;
    background-color: black;
    border: solid white 2px;
    padding: .5rem 1rem;
    margin-top: .5rem;
    transition: background-color .2s ease-in-out;
}

button:hover {
    cursor: pointer;
    background-color: #ff46be;
}

#bio h2 {
    color: white;
}

#paresis_banner {
    display: flex;
    width: 98%;
}

#social {
    padding: 0 0 1em 0;
}

#paresis_group_photo {
    display: flex;
    width: 90%;
    max-width: 400px;
    margin-bottom: .5rem;
}

.links {
    color: white;
    transition: color .2s ease-in-out;
}

.fa-brands {
    margin: .1em;
}

.links:hover {
    color: #ff46be;
}

.latest-release {
    text-align: left;
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 1rem;
}

.album-details ol {
    padding: 1rem;
    margin: 0;
}

.album-details {
    margin-left: 1rem;
}

.past-show-list {
    margin-top: 0;
    list-style: none;
    text-align: center;
    padding: 0;
}

.upcoming-show-list {
    margin-top: 0;
    margin-bottom: 1rem;
    list-style: none;
    text-align: center;
    padding: 0;
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.7em;
}


@media only screen and (max-width: 600px) {
    main {
        padding-top: 2rem;
    }
  .latest-release {
    text-align: left;
    display: flex;
    flex-flow: column;
    margin-bottom: 1rem;
    }
    .album-details {
    margin-left: 0;
    }
    .album-details ol {
        padding-top: 0;
    }
}