* {
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

/*Header page*/
.header_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 118px;
    background-color: #181818;
}
.header_container .left {
    display: flex;
    align-items: flex-start;
    justify-items: flex-start;
}
.header_container .left .logo {
    flex-shrink: 0;
    background-image: url("../img/header/logo_1.png");
    background-size: cover;
    width: 66px;
    height: 67px;
    margin-left: 135px;
    margin-right: 30px;
}
.header_container .left .title {
    width: 384px;
    height: 32px;
    line-height: 32px;
    font-size: 20px;
    font-weight: bold;
    color: #E6E6E6;
    letter-spacing: -1px;
    /*white-space: nowrap;*/
}
.header_container .right {
    display: flex;
    align-items: center;
    justify-items: flex-end;
    padding-right: 150px;
}
.header_container .right .nav {
    text-decoration: none;
    white-space: nowrap;
    height: 25px;
    line-height: 25px;
    font-size: 20px;
    font-weight: bold;
    color: #E6E6E6;
    margin-left: 38px;

}
.header_container .right .nav_current {
    padding: 12px 20px;
    color: #FFC401;
    border-radius: 25px;
    background-color: #5D2CDC;
}
/*Header page*/

/*Footer page*/
.footer_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 118px;
    background-color: #181818;
}
.footer_container .copyright {
    /*height: 60px;*/
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 40px;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
/*Footer page*/


