:root {
    --fg: #8aeef4;
    --bg: #8b6392;
    --a1: #99cbe6; /* Accent color 1 */
    --a2: #9dd1f1;
    --a3: #3d3b3f;
}



body {
    background-color: #8b6392;
    color: #8aeef4;
    font-family: "Comic Neue", cursive;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: large;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

h1 {
    font-family: "Comic Neue", cursive;
    font-weight: 600;
    font-style: normal;
    font-size: xxx-large;
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.mid {
    padding-top: 1%;
    padding-bottom: 5%;
    max-width: 800px;
    padding-left: 5%;
    padding-right: 5%;
    margin: 28px auto 0;
}

.callout {
    background: repeating-linear-gradient(135deg, var(--a1), var(--a1) 10px, var(--a2) 10px, var(--a2) 20px);
    border-radius: 10px;
    width: 40%;
    padding: 10px;
    margin: 10px auto 0;
    text-align: center;
}

.byline {
    padding-top: 0px;
    margin-top: -20px;
    font-weight: 300;
    font-size: small;
    font-family: "Comic Neue", cursive;
    font-weight: 400;
    font-style: normal;
}
.icons {
    text-align: center;
    padding-bottom: 20px;
}

.icon_link {
    position: relative;
    text-decoration: none;
    color: #8aeef4;
}

.icon {
    width: 2em;
    height: auto;
    padding: 5px;
}

.description {
    visibility: hidden;
    background-color: var(--a3);
    color: #8b6392;
    text-align: center;
    padding: 5px;
    position: absolute;
    top: 1em;
    left: 50%;
    transform: translateX(-50%);
    font-size: small;
}

.icon_link:hover .description {
    visibility: visible;
}