/*
    |\__/,|   (`\
  _.|o o  |_   ) )
-(((---(((-------- 

    I don't know a thing about proper front-end 
    coding standards. Copy at your own risk!
*/
body {
    background: #fff url(/images/t4.png);
    font-family:"Short Stack", sans-serif;
    font-size: 1.3em;
    color: #917e6a;
}
a {
    color: #c9af92;
    text-decoration: none;
}
a:hover, nav span:hover {
    color:#e6c9a9;
    transition: .6s
}

.container {
    background-image: url(/images/frame.png);
    background-size: cover;
    position: absolute;
    margin-left: auto;
    height: 850px;
    width: 1257px;
    left: 49.5%;
    top: 49%;
    transform: translate(-50%, -50%);
}

/* navbar-------------------------------------------------------*/
.menu,
.menu li,
.menu a,
.sub-menu {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar {
    background-image: url(/images/t6.png);
    border: 1px solid #e0c5a5;
    border-radius: 10px;
    width: 1102px;
    height: 85px;
    margin-left: 77px;
    margin-top: 75px;
    z-index: 10;
}
.menu {
    font-family: "Hi Melody", sans-serif;
    font-size: 1.6em;
    font-weight: bold;
    padding: 7px;
    box-sizing: border-box;
    list-style: none;
    display: flex;
}
.menu > li {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.menu a {
    display: block;
    padding: 15px 20px;
    color: #917e6a;
    text-decoration: none;
}
.menu a:hover {
    color: #c9af92;
}
.sub-menu{
    list-style: none;
    position: absolute;
    top: 50px;
    background-color: #fff6e6;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    text-align: center;
    z-index: 100;
}
.sub-menu li a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
}
.sub-menu li a:hover {
    background-color: #ede4d4;
}
.dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

/* index---------------------------------------------------------*/
.main {
    font-size: 0.9em;
    height: 550px;
    width: 395px;
    position: relative;
    left: 170px;
    top: -130px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c9af92 transparent;
}
.main a:hover, nav span:hover{
    color:#fff;
    text-shadow: 2px 2px 2px #64665d;
    background: #d1d8bb;
    border-radius: 5px;
    transition: .6s
}

.ring {
    font-size: 0.7em;
    line-height: 1.5;
    height: 180px;
    width: 350px;
    position: relative;
    left: 770px;
    top: 55px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c9af92 transparent;
    text-align: center;
}
.ring a:hover, nav span:hover{
    color:#fff;
    text-shadow: 2px 2px 2px #64665d;
    background: #d1d8bb;
    border-radius: 5px;
    transition: .6s
}

.updates {
    font-size: 0.7em;
    height: 210px;
    width: 365px;
    position: relative;
    bottom: 400px;
    left: 683px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c9af92 transparent;
}
.updates p {
    font-family: "Hi Melody", sans-serif;
    font-weight: bold;
    color: #fff;
    background-color: #c5c9b8;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
}
.updates ul {
    list-style-type: none;
    padding-left: 0;
}
.updates li {
    padding: 5px;
    border-bottom: 1px solid #917e6a;
}
.updates a:hover, nav span:hover{
    color:#fff;
    text-shadow: 2px 2px 2px #64665d;
    background: #d1d8bb;
    border-radius: 5px;
    transition: .6s
}

/* footer--------------------------------------------------------*/
.footer {
    color: #fff;
    text-shadow: 2px 2px 2px #64665d;
    position: relative;
    text-align: center;
    width: 100%;
    bottom: 220px;
}

/* snow----------------------------------------------------------*/
#snow-toggle {
    position: fixed;
    top: 11px;
    left: 103px;
    width: 70px;
    height: 70px;
    border-radius: 40%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 1000000;
}
#snow-toggle:hover {
    background: rgba(255, 255, 255, 0.5);
}