/*
 https://fonts.google.com/specimen/Inter
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;900&display=swap');

h1, p, a, figure, table, tr, td {
    font-size: 100%;
    background: transparent;

    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
}

body {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}


.padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.trailing {
    padding-bottom: 100%;
}


.navbar {
    z-index: 100;
    position: fixed;
    overflow: hidden;

    width: 100%;
    max-width: 960px;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;

    background-color: white;
}

.navbar table {
    width: 100%;
    border-collapse: collapse;
    background: -webkit-linear-gradient(left, rgba(71, 88, 164, 1) 0%, rgba(111, 35, 125, 1) 100%);
}

.navbar td {
    position: relative;
    width: 25%;

    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-align: left;
}

.navbar td a {
    display: block;
    padding-left: 12px;
    padding-right: 12px;

    background-color: white;
    color: black;
    text-decoration: none;
}

.navbar td a:after {
    position: absolute;
    right: 5px;
    content: ":";
}

.navbar td:first-child a.current:before {
    content: "";
}

.navbar td a.current:before {
    position: absolute;
    left: 3px;
    content: "/";
}

.navbar td a.current {
    background-color: transparent;
    color: white;
}


.slideshow {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;

    width: 960px;
    height: 720px;
}

.slideshow figure {
    position: absolute;

    opacity: 0;
    transition: 2s opacity;
}

.slideshow figure.show {
    opacity: 1;
    transition: 1s opacity;
}

.slideshow .next,
.slideshow .prev {
    z-index: 10;

    position: absolute;
    top: 50%;
    margin-top: -26px;

    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-size: 42px;
    color: rgba(255, 255, 255, 0.7);

    user-select: none;
}

.slideshow .next:hover,
.slideshow .prev:hover {
    cursor: pointer;
}

.slideshow .next {
    right: 0;
    padding-right: 10px;
}

.slideshow .prev {
    left: 0;
    padding-left: 10px;
}


.text {
    max-width: 960px;
    margin: 0 auto;
    text-align: left;

    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.text h1 {
    padding-top: 20px;
    padding-bottom: 20px;

    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 24px;
}

.text h2 {
    padding-top: 10px;

    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.text p {
    padding-bottom: 10px;
}

.text a {
    background: -webkit-linear-gradient(left, rgba(71, 88, 164, 0.2) 0%, rgba(111, 35, 125, 0.2) 100%);
    color: black;
    text-decoration: none;
}

.text a:focus,
.text a:hover,
.text a:active {
    background: -webkit-linear-gradient(left, rgba(71, 88, 164, 1) 0%, rgba(111, 35, 125, 1) 100%);
    color: white;
    text-decoration: none;
}

.text ul {
    padding-left: 1em;
    list-style: none;
}

.text ul li::before {
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    content: "\2022";
}

.text li:nth-child(1):before {
    color: rgba(71, 88, 164, 1);
}

.text li:nth-child(2):before {
    color: rgba(80, 81, 157, 1);
}

.text li:nth-child(3):before {
    color: rgba(89, 72, 150, 1);
}

.text li:nth-child(4):before {
    color: rgba(101, 55, 137, 1);
}

.text li:nth-child(5):before {
    color: rgba(106, 45, 131, 1);
}

.text li:nth-child(6):before {
    color: rgba(111, 35, 125, 1);
}

.text picture,
.text video {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.text table {
    width:  100%;
    margin-top: 20px;
    margin-bottom: 20px;

    background: -webkit-linear-gradient(left, rgba(71, 88, 164, 1) 0%, rgba(111, 35, 125, 1) 100%);
}

.text table thead {
    font-family: "Inter", sans-serif;
    font-size: 18px;

    text-align: center;
    color: white;
}

.text table tbody {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 18px;

    text-align: center;
    background-color: white;
}

.text table td {
    padding: 5px;
}

.text table td small {
    padding-left: 5px;

    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 12px;
}

.tdleft {
    text-align: left;
}
