*, *::before, *::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "LeagueMono";
  src:
    url("/media/LeagueMono/LeagueMono.ttf"),
}

body {
    margin: 0;
    font-family: "LeagueMono", monospace;
    font-size: 22px;
    background-color: mediumpurple;
    background-repeat: repeat;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

header {
    width: 100%;
    text-align: center;
    background-color: rebeccapurple;
    font-size: 42px;
    margin: 0px;
    padding: 20px;
    font-stretch: expanded;
    font-weight: 500;
    opacity: 95%;
    a {
        color: inherit;
        text-decoration: inherit;
    }
}

main {
    padding: 20px;
    flex-grow: 1;
}

footer {
    padding-bottom: 10px;
}


h1 {
    font-size: 36px;
    font-weight: 500;
}

h2 {
    font-size: 28px;
    font-weight: 500;
}


p {
    max-width: 70ch;
    margin-inline: auto;
}

@counter-style critters {
    system: cyclic;
    symbols: "🐛" "🐜" "🐌" "🐞";
    suffix: " ";
}

ul {
    list-style-type: critters;
}

li {
    padding-block: 5px;
}

.bandcamp {
    border: 0;
    width: 400px;
    height: 300px;
}

.youtube {
    border: 0;
    width: 580px;
    height: 344px;
}


.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.column {
    display: flex;
    flex-direction: column;
    text-align: center;
    * {
        margin-block: 10px;
    }
}

.padding {
    padding: 20px;
}

.headshot {
    max-width: 400px;
}
