@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

*{
    margin: 0;
    padding: 0;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 120px 20px 120px;
    background-color: #080a31;
    box-shadow: 0 0px 8px #050837;
    position: sticky;
    top: 0;
    z-index: 3;
}
.logo img{
    height: auto;
    width: 130px;
}
.navbar{
    display: flex;
    align-items: center;
}
.navbar a{
    margin-right: 60px;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    font-family: "Roboto Mono", monospace;
}
.navbar a:hover{
    transition: .2s;
    transform: scale(.95);
}
.dropCon{
    cursor: pointer;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    border: transparent;
    color: #fff;
    margin-right: 60px;
    position: relative;
}
.dropCon .drop:hover{
    transition: .2s;
    transform: scale(.95);
}
.menuCon{
    background-color: #06083c;
    border: none;
}
.menuCon .item{
    display: flex;
    justify-content: center;
    margin: 0;
}
.menuCon .item:hover{
    color: #fff;
    background-color: #060b58;
    transition: .2s;
    transform: scale(.9);
}
.menuCon .active{
    background-color: #090b59;
    margin: 0 5px;
}
.login{
    border: .5px #ffffff49 solid;
    background-color: #1a1e60;
    padding: 3px 10px;
}
.login a{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 0;
}
.login:hover{
    transition: .3s;
    background-color: #272ea7;
    border: .5px #fff solid;
    transform: scale(.9);
}
section{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(images/Moskov\ -\ Infernal\ Wyrmlord.jpg);
    background-size: cover;
    background-attachment: fixed;
}
.contents{
    display: flex;
    gap: 80px;
    padding: 60px 120px;
    background: linear-gradient(to left, #03052ad7 30%, #03052a 100%);
    width: 100%;
    position: relative;
}
.nav{
    display: flex;
    flex-direction: column;
    border-right: 1px solid #53535390;
    height: 250px;
    position: sticky;
    top: 153px;
    left: 0;
}
.nav a{
    padding: 25px 40px 25px 15px;
    width: 155px;
    text-decoration: none;
    color: #fff;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
}
.nav a:hover{
    transition: .2s;    
    background: linear-gradient(to left, #080e5cd2 0%, #040632 100%);
}
.nav .active{
    background: linear-gradient(to left, #080e5cd2 0%, #040632 100%);
}
.content2{
    display: flex;
    flex-direction: column;
    gap: 50px;
    min-height: 80vh;
    width: 100%;
}
.page_title{
    color: #fff;
    border-bottom: 1px solid #ffffff4e;
    font-family: "Cinzel", serif;
    padding-bottom: 5px;
}
.uploads{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.updateCon{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.updates{
    color: #fff;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #797979b8;
}
.updateCon p{
    color: #c7c7c7;
}
.content3{
    display: flex;
    flex-direction: column;
    gap: 50px;
}






/* logout */

.modal2 {
    display: none;
    position: fixed;
    z-index: 4;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.64);
}
.modal2-content{
    position: relative;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    background-color: #040737;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.modal2-content h2{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cacaca;
}
.modal2-content p{
    font-size: 16px;
    color: #dedede;
}
.close2 {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    color: #dedede;
    font-size: 20px;
}
.close2:hover{
    color: #d40000;
}
.btns{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.cancel, .logout{
    cursor: pointer;
    border: none;
    padding: 5px 8px;
    border-radius: 5px;
}
.logout{
    text-decoration: none;
    color: #fff;
    background-color: #1a1e60;
}
.logout:hover{
    transition: .2s;
    transform: scale(.96);
    color: #fff;
    background-color: #23277b;
}
.cancel:hover{
    transition: .2s;
    transform: scale(.96);
    background-color: #c7c7c7;
}





/* login */
.modal {
    display: none;
    z-index: 4;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.656);
}
.image img{
    position: absolute;
    left: 140px;
    top: -90px;
    height: 320px;
    width: auto;
}
.modal-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    top: -50px;
    background-color: #050a44;
    margin: 15% auto;
    border-radius: 10px;
    width: 310px;
    height: auto;
    padding: 30px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: modalopen;
    animation-duration: 0.4s;
}
.modal-content h3{
    margin-top: 10px;
    color: #fff;
    font-family: "Roboto Mono", monospace;
}
.modal-content .Error{
    color: #c20000;
}
@keyframes modalopen {
    from {opacity: 0}
    to {opacity: 1}
}
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover{
    color: rgb(110, 110, 110);
    text-decoration: none;
    cursor: pointer;
}
.modal-content h3{
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: 25px;
}
.modal-content form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
form .control{
    padding: 4px;
    border-radius: 25px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #aeaeae;
}
.loginBtn{
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid #aeaeae;
}
.loginBtn:hover{
    color: #fff;
    background-color: #0d17d0;
    transition: .2s;
    transform: scale(.9);
}
.modal-content p{
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
}
.modal-content a{
    text-decoration: none;
    color: #c7b300;
}



/* signup */
.modal2{
    display: none;
    z-index: 4;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.656);
}
.image img{
    position: absolute;
    left: 140px;
    top: -90px;
    height: 320px;
    width: auto;
}
.modal-content2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    top: -50px;
    background-color: #050a44;
    margin: 15% auto;
    border-radius: 10px;
    width: 310px;
    height: auto;
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: modalopen;
    animation-duration: 0.4s;
}
.modal-content2 h3{
    margin-top: 10px;
    color: #fff;
    font-family: "Roboto Mono", monospace;
}
.modal-content2 .Error{
    color: #c20000;
}
@keyframes modalopen {
    from {opacity: 0}
    to {opacity: 1}
}
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover{
    color: rgb(110, 110, 110);
    text-decoration: none;
    cursor: pointer;
}
.modal-content2 h3{
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: 25px;
}
.modal-content2 form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
form .control2{
    padding: 4px;
    border-radius: 25px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #aeaeae;
}
.loginBtn{
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid #aeaeae;
}
.loginBtn:hover{
    color: #fff;
    background-color: #0d17d0;
    transition: .2s;
    transform: scale(.9);
}
.modal-content2 p{
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
}
.modal-content2 a{
    text-decoration: none;
    color: #c7b300;
}



