body {
    height: 100vh;
    overflow: hidden;
    margin: 0px;
    background: #efefe6;
    color: #131313;
    font-family: 'Newsreader', serif;
}
.container {
    overflow: hidden;
    padding: 120px 0px 0px;
    width: 100%;
}
.letterContainer {
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    animation: skew 7s infinite;
    animation-timing-function: linear;
    transform: skew(20deg);
    animation-direction: alternate-reverse;
}
.letterRow {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 1.9rem;
    font-family: 'Newsreader', serif;
    opacity: .7;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none; 
        -ms-user-select: none;
            user-select: none; 
}
.letter {
    margin: 10px 25px;
    width: 25px;
}
.title {
    margin: 10px;
}
.title h1 {
    text-align: center;
    font-size: 1.7rem;
    letter-spacing: 5px;
    font-family: 'Newsreader', serif;
    margin: 0px;
}
.stuffContainer {
    position: absolute;
    width: 100%;
    margin-top: 30px;
    bottom: 40px;
    display: flex;
}
.stuff {
    /* background: #efefe6; */
    width: 40%;
    margin: 0px;
    list-style: none;
    min-width: 330px;
    list-style: none;
    padding-left: 60px;
}
.link {
    text-decoration: none;
}
.content {
    font-size: 1.2rem;
    padding: 10px;
    width: 100%;
    margin: 20px 40px;
    background: #efefe6;
}
.stuff li {
    font-size: 1.75rem;
    padding: 5px 20px;
    margin: 20px 5px;
}
.item {
    text-decoration: none;
    color: #131313;
    transition: 0.3s;
    padding: 20px 0px;
}
.item::before {
    content: '>';
    transition: .5s;
    opacity: 0;
}
.selected::before {
    opacity: 1;
    margin-right: 15px;
}
.item:hover::before {
    content: '>';
    opacity: 1;
    margin-right: 15px;
}

.mobileContainer {
    display: none;
    background: gray;
    /* background: #efefe6; */
    z-index: 1000;
    width: 100%;
    height: 100vh;
}
#mobCon {
    margin: 20px;
}
#mobCon h3 {
    font-size: 2rem;
}
#mobCon p {
    font-size: 1.5rem;
}
.mobby {
    position: relative;
    overflow: auto;
}
/* Responsive */
@media only screen and (max-width: 1000px) {
    .container {
        padding-top: 80px;
    }
}
@media only screen and (max-width: 750px) {
    .stuff li {
        font-size: 1.5rem;
    }
    .stuff {
        padding-left: 0px;
    }
    .stuff {
        min-width: 200px;
    }
}
@media only screen and (max-width: 600px) {
    .content {
        display: none;
    }
    .mobileContainer {
        display: block;
    }
    .container {
        padding: 50px 0px 0px;
    }
    .letter {
        width: 10px;
        font-size: 1.5rem;
        margin: 6px 20px;
    }
    .title h1 {
        font-size: 1.2rem;
    }
}

@media only screen and (min-height: 700px) and (max-width: 600px) {
    .letter {
        margin: 18px 20px;
    }
    .container {
        padding-top: 30px;
    }
}
@media only screen and (max-height: 650px) {
    .stuffContainer {
        bottom: 30px;
    }
}
/* Animation */
@keyframes skew {
    0% {
      transform: skew(12deg, 12deg);
    }
    100% {
      transform: skew(-12deg, -12deg);
    }
  }