#menu {
    display: none;
}

#mobileMenu {
    background: #383838;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#mobileWelcome h1 {
    font-family: "Kanit", sans-serif;
    font-size: 48px;
    text-align: center;
    color: #222222;
    margin: 0px;
    padding: 0.1em;
}

#mobileWelcome .subtext {
    text-align: center;
    padding: 0 3em;
    margin: 0;
    font-weight: 300;
}

#mobileMenu img {
    width: 24px;
    height: 24px;
    margin: auto 0;
}

#mobileMenu:hover {
    background: #c8bfae;
}

#top {
    justify-content: space-between;
}

ul.links {
    flex-direction: column;
}

#welcome {
    display: none;
}

#words {
    padding-bottom: 2em;
    grid-template-columns: 100%;
    display: flex;
    justify-content: center;
}

#animation p {
    padding-left: 4em;
    padding-right: 4em;
    font-size: 12px;
    text-align: center;
    font-weight: 300;
}

.postLink {
    color: #ef9a0a;
}

/* carousel */
.carousel {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    width: 100%;
    flex: 1;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.carousel-item:not(.active) {
    display: none;
}

.carousel-title {
    margin: 4px;
}

.carousel-text {
    margin: 10px;
}

.carousel-img {
    width: 12em;
}

.carousel-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 50%;
    margin: auto;
}

.prev,
.next {
    font-size: 16px;
    width: 3em;
    height: 3em;
    background: #383838;
    color: #eee;
    border: none;
    cursor: pointer;
    padding: 0px;
    border-radius: 50%;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}
