@font-face {
    font-family: 'Russo One';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/russo_one/russo-one-v14-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('/fonts/russo_one/russo-one-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('/fonts/russo_one/russo-one-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('/fonts/russo_one/russo-one-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('/fonts/russo_one/russo-one-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('/fonts/russo_one/russo-one-v14-latin-regular.svg#RussoOne') format('svg'); /* Legacy iOS */
}
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/source_sans_pro/source-sans-pro-v21-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('/fonts/source_sans_pro/source-sans-pro-v21-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('/fonts/source_sans_pro/source-sans-pro-v21-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('/fonts/source_sans_pro/source-sans-pro-v21-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('/fonts/source_sans_pro/source-sans-pro-v21-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('/fonts/source_sans_pro/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}
body {
    min-width: 1000px;
    background-color: rgb(68, 164, 248);
    font-size: 20px;
    color: whitesmoke;
    margin: 0px;
}
.header-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    background-color: rgb(31, 128, 255);
}
.logo {
    height: 100px;
    width: 400px;
    margin: 10px;
}
.icon {
    width: 40px;
    height: 40px;
}
.header-button-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 30px;
    background-color: rgb(26, 89, 247);
}
.header-button {
    height: 30px;
    background-color: rgb(26, 89, 247);
    color: azure;
    font-size: 16px;
    padding: 5px;
    padding-left: 10px;
    font-weight: bold;
    text-align: center;
    border: none;
    text-decoration: none;
    cursor: pointer;
    float: left;
}
.header-button:hover {
    background-color: rgb(208, 208, 208);
    color: rgb(35, 35, 35);
    font-weight: bold;
    text-align: center;
}
/* ========================================== CONTENT-Main Style */
.c-mainbox {
    border: 2px solid rgb(246, 246, 246);
    background-color: #323232;
    box-shadow: 5px 10px 18px #000000;
    position: relative;
    width: min-content;
    margin: 20px;
    padding: 20px;
}
.c-txt {
    font-family: 'Source Sans Pro';
    font-size: 16px;
    padding: 10px;
}
.c-txt-h2 {
    font-family: 'Source Sans Pro';
    font-size: 25px;
    padding: 10px;
    font-weight: bold;
}
.c-h {
    font-family: 'Russo One';
    font-size: 20px;
}
.c-select {
    background-color: rgb(50, 113, 231);
    border: white solid 2px;
    font-size: 16px;
    color: azure;
}
.c-button {
    background-color: rgb(50, 113, 231);
    border-radius: 0px;
    appearance: none;
    border: white solid 2px;
    font-size: 18px;
    color: azure;
    margin-left: 10px;
}
.c-button:hover {
    background-color: rgb(197, 197, 197);
    border: white solid 2px;
    color: rgb(0, 0, 0);
}
.c-flex-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.c-flex-right {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 10px;
}
.c-flex-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.c-txt-link {
    color: rgb(246, 255, 0);
}
.c-img-link{
    width: 20px;
    height: 20px;
}