@font-face {
    font-family: pixel;
    src: url(fonts/zpix.ttf);
}
@font-face {
    font-family: head;
    src: url(fonts/Synkopy.otf);
}
@font-face {
    font-family: head2;
    src: url(fonts/ArachnologyStandard.otf);
}
h1 {
    font-family: head;
    font-weight: lighter;
    margin: auto;
}
h2 {
    font-family: head2;
    font-weight: lighter;
    margin: auto;
    padding: 2px 12px;
}
p {
    padding: 0px 8px;
}
body {
    background-color: black;
    color: white;
    font-family: pixel;
}
a:link {
    color: #f7e797;
}
a:visited {
    color: #e9c65f;
}
a:hover {
    color: #ff8700;
}
/*-----INDEX-----*/
.index {
    margin: auto;
    max-width: 800px;
    min-width: fit-content;
    box-shadow: -15px 15px white;
    border-bottom-right-radius: 80px;
    border-top-left-radius: 80px;
    margin-top: 24px;
    font-size: 200%;
    overflow: hidden;
}
.indxhead {
    background: url(images/indxhead.webp) no-repeat top;
    background-size: cover;
    min-height: 100px;
    border-top-left-radius: 80px;
}

.indxbody {
    border: solid 1px;
    border-bottom-right-radius: 80px;
    border-top: none;
    padding: 12px;
    font-family: head2;
}

/*-----FLEXBOX LAYOUT-----*/

/* Style the header */
.header {
    text-align: right;
    font-size: 35px;
    padding: 10px;
}

/* Container for flexboxes */
.row {
    display: -webkit-flex;
    display: flex;
}

/* Create three unequal columns that sits next to each other */
.column {
    padding: 10px;
}

/* Left and right column */
.column.side {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* Middle column */
.column.middle {
    -webkit-flex: 4;
    -ms-flex: 4;
    flex: 4;
}

/* Style the footer */
.footer {
    padding: 10px;
    text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 925px) {
    .row {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}
/*-----CONTENT-----*/
.headpic {
    background: url(images/head.webp) no-repeat top;
    background-size: cover;
    min-height: 130px;
    background-position: 50% 29%;
}
.head {
    border-radius: 80px 1px 20px 1px;
    overflow: hidden;
    border: solid 1px;
    box-shadow: -7px 7px #7f0077;
}
.container {
    margin: auto;
    max-width: 1200px;
    padding: 24px;
}
.content {
    border: solid 1px;
    border-radius: 20px 1px 20px 1px;
    box-shadow: -7px 7px #7f0077;
    overflow: hidden;
    margin-bottom: 16px;
}
.conthead {
    text-align: right;
    background-color: white;
    color: black;
}
.links {
    padding: 0px 8px;
}

/*----------GALLERY----------------*/
.gallery {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px;
}
.gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    object-position: 50% 25%;
    margin: 4px;
    border: solid;
}

/*--------------TABLE-----------------*/
table,
th,
td {
    border: 1px solid;
    margin: 16px;
    padding: 8px;
    border-collapse: collapse;
}
