
html {
    height: 100%;
    overflow: hidden;
}
body {
    margin: 0;
    padding: 0;
    perspective: 1px;
    transform-style: preserve-3d;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    font-family: Nunito, serif;
    scroll-snap-type: both proximity;
    scroll-behavior: smooth;
    scrollbar-color: #575757 transparent;
}

.slide {
    position: relative;
    padding: 1% 5%;
    height: 95vh;
    width: 100vw;
    box-sizing: border-box;
    transform-style: inherit;
    scroll-snap-align: center;
    background: 50% 50% / cover;
    align-content: center;
}
.title {
    width: 50%;
    max-height: 90%;
    padding: 3%;
    border-radius: 10px;
    background: linear-gradient(135deg, #505050 100%, #707070 0%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    margin: auto 0 auto auto;
    overflow: auto;
    scrollbar-color: #c5c5c5 transparent;
}
.header {
    text-align: center;
    font-size: 175%;
    color: #ffffff;
}

.projectImg {
    position: absolute;
    top: 50%;
    left: 35%;
    max-width: 30%;
    max-height: 35%;
    transform: translateX(-100%) translateY(-110%);
    padding: 4px;
    border-radius: 5px;
    background: #888888bb;
    box-shadow: 0 0 8px #000000AA;
}
.projectImg:last-of-type {
    transform: translateX(-100%) translateY(10%);
}
.brightImg {
    opacity: 80%;
}