body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: black;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Source Sans Pro', sans-serif;
}

.hidden {
    display: none !important;
}

.config {
    z-index: 5;
}

.bg-container {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: -2;
    filter: blur(1px);
    opacity: 0.6;
}

.center-y {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#text-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#title {
    height: fit-content;
    width: 100%;
    z-index: 3;
    transition: 2.0s ease-in-out;
    user-select: none;
    text-align: center;
}

#title h1 {
    color: white;
}

#title p {
    color: white;
    transition: .5s ease-in-out;
    opacity: 0;
}

.links-container {
    width: 100%;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.link {
    cursor: pointer;
    transition: .6s ease;
    color: rgb(199, 199, 199);
    background: black;
    width: 70%;
    margin: 1em;
    padding: 0.5em;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    max-width: 300px;
}

.link h2 {
    text-align: center;
    margin: 0.3em;
    pointer-events: none;
}

.link p {
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: 0.6s ease-out;
    height: 0px;
    margin: 0;
    padding: 0;
}

#bootstrap-cover {
    position: fixed;
    height: 100%;
    width: 100%;
    background: black;
    transition: 2s ease-in-out;
    z-index: 2;
}

#bootstrap-cover h1 {
    position: relative;
    opacity: 1;
    transition: 2.0s ease-in-out;
    text-align: center;
    color: white;
}

#archive {
    position: absolute;
    transform: 0.4s ease-in-out;
    opacity: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

#archive img {
    padding: 1em;
    cursor: pointer;
}

#showcase-overflow {
    opacity: 0;
    transition: 0.4s ease-in-out;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
}

#showcase {
    display: none;
    z-index: 0;
    position: absolute;
    height: 100%;
    width: 300vw;
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.slideshow {
    height: 100vh;
    width: 100vw;
    transition: 2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

#showcase img {
    max-height: 85%;
    max-width: 85%;
}

#show {
    transition: 0.2s ease-in-out;
}

.side {
    transform: scale(80%);
}

#showcase p {
    position: absolute;
    font-size: 20pt;
    color: white;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.pointer-text {
    padding: 0;
    margin: 0;
    cursor: pointer;
    user-select: none;
}


.absmid {
    position: absolute;
    color: white;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
}

#goleft {
    left: 2%;
}

#goright {
    right: 2%;
}

#cross {
    z-index: 10;
    color: white;
    position: absolute;
    top: 3%;
    right: 3%;
}