.ppSlideshowContainer * {box-sizing: border-box;}
.ppSlideshowContainer {
    width: 100%;
    position: relative;
    margin: 2rem 0 2rem 0;
}
.ppSlides {
    display: none;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.2);
}
.prev {
    left: 0;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.ppNumbertext {
    background-color: rgba(0,0,0,0.4);
    color: #f2f2f2;
    font-family: Montserrat, sans-serif;
    font-size: 2rem;
    padding: .8rem 1.2rem;
    position: absolute;
    top: 0;
    border-radius: 0 0 1rem 0;
    user-select: none;
}
.dots {
    width: auto;
    text-align: center;
    position: static;
    user-select: none;
}
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #a79e98;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #f5e9e2;
}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .1}
    to {opacity: 1}
}

.project-page {
    display: flex;
    flex-flow: column nowrap;
    max-width: 100rem;
    position: relative;
    margin: auto;
    background-color: #323232;
    box-shadow: 0 0 1rem 1rem rgba(0, 0, 0, 0.2);
    padding: 1rem 0 1rem 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #f5e9e2;
}
.ppTitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 1rem;
    margin: 2rem 0 2rem 0;
}
.ppSubtitle {
    font-family: Comfortaa, sans-serif;
    font-size: 2.5rem;
    margin: 2rem 0 2rem 0;
}
.ppParagraph {
    font-family: Montserrat, sans-serif;
    font-size: 1.5rem;
    margin: 2rem 0 2rem 0;
    max-width: 75%;
    display: block;
}
.ppImg {
    margin: 2rem 0 2rem 0;
    width: 100%;
}
.ppImgSmall {
    margin: 2rem;
    width: 35%;
}
.ppLink {
    font-family: Comfortaa, sans-serif;
    font-size: 1.5rem;
    margin: 2rem 0 2rem 0;
    color: #e0d4cd;
}
.ppLink:hover{
    transition: 0.2s ease-in-out;
    color: #f5e9e2;
}

#footer {
    position: relative;
    z-index: 1;
}
.topNavigation {
    position: relative;
    z-index: 1;
}

iframe {
    margin: 2rem 0 2rem 0;
    width: 100%;
    aspect-ratio: 16 / 9;
}

#gifs {
    display: flex;
	justify-content: center;
}

#gifs img {
	width: 20rem;
	margin: 1.5rem;
    background-color: #252525;
    border-radius: 1rem;
}

#gif-links {
    display: flex;
	justify-content: center;
}

#gif-links a {
    color:#e0d4cd;
    font-family: Montserrat, sans-serif;
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
	width: 20rem;
	padding: 2rem;
}
#gif-links a:hover {
    color:#fff;
    font-family: Montserrat, sans-serif;
    text-decoration: none;
    font-size: 1.55rem;
    display: block;
	width: 20rem;
	padding: 1.975rem;
}

#bold {
    font-weight: bold;
    font-size: 1.6rem;
}

.right {
    text-align: left;
}

.codesnippet {
    background: #161616;
    border: 1px solid #ddd;
    border-left: 8px solid #e4c2b2;
    color: #CCC;
    page-break-inside: avoid;
    font-family: monospace;
    font-size: 15px;
    line-height: 1.6;
    margin: 1.6em;
    max-width: 25%;
    max-height: 20em;
    overflow: scroll;
    padding: 1em 1.5em;
    display: block;
    word-wrap: break-word;
}
.codesnippetwide {
    background: #161616;
    border: 1px solid #ddd;
    border-left: 8px solid #e4c2b2;
    color: #CCC;
    page-break-inside: avoid;
    font-family: monospace;
    font-size: 15px;
    line-height: 1.6;
    margin: 1.6em;
    max-width: 100%;
    max-height: 30em;
    overflow: scroll;
    padding: 1em 1.5em;
    display: block;
    word-wrap: break-word;
}

.imgandcode {
    display: flex;
	justify-content: center;
}

.linknormal {
    font-family: Montserrat, sans-serif;
    font-size: 1.5rem;
    color: #ffba93;
}