:root {
    --gunmetal: #2c363f;
    --lighter-gunmetal: #41505d;
    --even-lighter-gunmetal: #566a7b;
    --lightest-gunmetal: #6c8398;
    --flower-white: #fefeff;
    --mountain-haze: #9956ad;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    min-width: 100%;
}

body {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--mountain-haze);
    color: var(--flower-white);
    font-family: "Simplon Norm";
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header {
    padding-bottom: 30px;
    width: 100%;
    max-width: 950px;
    padding-left: 25px;
    padding-right: 25px;
}

.xylo {
    height: 30px;
}

.gridbox {
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
    max-width: 950px;

    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 0px;
    grid-row-gap: 30px;
}

.sectionname {
    padding-right: 15px;
}

p {
    line-height: 30px;
    margin: 0;
    padding: 0;
}

div p:not(:first-child) {
    padding-top: 15px;
}

a:link,
a:visited,
a:hover,
a:active {
    color: var(--flower-white);
}

@media only screen and (max-width: 649px) {
    .gridbox {
        grid-template-columns: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 30px;
    }

    .sectionname {
        margin-bottom: -15px;
    }
}

::selection {
    background: var(--flower-white);
    color: var(--mountain-haze);
}

::-moz-selection {
    background: var(--flower-white);
    color: var(--mountain-haze);
}