.animate-title {
    animation-delay: 500ms;
    animation: Title .5s ease-in forwards;
}

@keyframes Title {
     0% {
        transform: translate(-1000, 0);
        }

    20% {
        transform: translate(-900, 0) scale(.1);
    }

    45% {
        transform: translate(-600px, 0) scale(.4);
        color: red;
        opacity: 0.5;
    }

    70% {
        transform: translate(-300px, 0) scale(.7);
        color: blue;
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    background-color: lightblue;
    margin: 0;
    padding: 0;
    max-width: 100%;
    text-align: center;
}

#donate {
    opacity: 0.4;
}

ul li{
    list-style: none;
}

.header {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    border-top: 10px solid red;
    border-bottom: 10px solid blue;
    border-radius: 10px;
    background-color: white;
}

.navbar {
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 15px;
    overflow: auto;
    white-space: nowrap;
}

.navbar a{
    padding: 3px;
}

.desktop-main-menu a:hover {
    border-top: 3px solid red;
    border-bottom: 3px solid blue;
    background-color: white;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
    transition-delay: 0.1s;
}

a {
    text-decoration: none;
    color: black;
}

.hamburger {
    position: fixed;
    top: 40px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    display: none;
}

.hamburger-top,
.hamburger-mid,
.hamburger-bot {
    position: absolute;
    width: 20px;
    height: 2px;
    top: 0;
    left: 0;
    background: #000;
    transition: all 0.5s;
}

.hamburger-mid {
    transform: translateY(5px);
}

.hamburger-bot {
    transform: translateY(10px);
}

.open {
    transform: rotate(90deg);
}

.open .hamburger-top {
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-mid {
    display: none;
}

.open .hamburger-bot {
    transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

.overlay-show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.stop-scroll {
    overflow: hidden;
}

.mobile-only {
    display: none;
}

.mobile-main-menu {
    position: fixed;
    top: 120px;
    right: 0;
    width: 330px;
    height: 100%;
    z-index: 4;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.9;
    font-weight: 700;
}

.show-menu {
    transform: translateX(0);
}

.mobile-main-menu nav {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding: 50px;
    width: 100%;
}

.mobile-nav-menu {
    padding: 50px;
    margin-bottom: 100px;
    font-size: 1.2rem;
    border-radius: 5px;
}

.mobile-nav-menu a {
    margin-bottom: 10px;
    padding: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    text-align: start;
    border-bottom: 2px blue dotted;
}

.mobile-nav-menu a:hover{
    border-top: 3px solid red;
    border-bottom: 3px solid blue;
    background-color: white;
    transition-duration: 0.3s;
    transition-timing-function: ease-in;
    transition-delay: 0.1s;
}

section {
    margin: 5px;
}

#title{
    margin: 5px;
}

.website-status{
    display: inline-block;
    border-top: 5px solid red;
    border-bottom: 5px solid blue;
    background-color: white;
    color: #000;
    font-weight: 700;
    border-radius: 5px;
    padding: 5px;
}

.footer {
    font-size: 1.1rem;
    text-align: center;
    margin: 10px;
}

.korean {
    color: red;
    margin: 5px;
}

.latin {
    color: blue;
    margin: 5px;
}

.status {
    color: yellow;
    background-color: black;
    display: block;
    text-align: center;
    border-radius: 10px;
    margin: 0;
    padding: 5px;
}

@media(max-width: 968px) {
    .desktop-main-menu {
        display: none;
    }

    .header {
    font-size: 1rem;
    padding-top: 10px;
    padding-bottom: 40px;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    }

    #intro{
        margin-top: 125px;
    }

    .hamburger {
        display: block;
        top: 85px;
        left: 200px;
    }

    .mobile-only {
        display: block;
    }
}

@media(min-width:640px) {
    .desktop-main-menu {
        display: block;
    }

    .hamburger {
    background: none;
    border: none;
    display: none;
    }
    
    .header {
    font-size: 1.1rem;
    }

    .navbar {
    padding: 5px;
    }

     #intro{
        margin-top: 175px;
    }

}

@media(min-width:1024px) {
    .show-menu {
        display: none;
    }

    #intro{
        margin-top: 20px;
    }
}
