h1,h2,h3,h4,h5,h6,.site-name {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
p,span,a,div,li,label,li {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {    
    background-color: #272727;
    margin: 0;
}
h1,h2,h3,h4,h5,h6,p,a,label,span,legend,li,div {
    color: #fff;
}
h1,h2,h3,h4,h5,h6 {
    margin-top: 30px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.container {
    opacity: 0;
}
.site-name {
    font-size: 32px;
    font-weight: 600;
}
button, .button {
    padding: 12px 15px;
    background: #fcb900;
    border-radius: 5px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 4px #000000;
    border: none;
    cursor: pointer;
}
.brand-color {
    background: linear-gradient(to right, #FF0000, #ff8000, #FF00FF, #00FFFF);
}
.brand-color-text {
    background-color: #000000;
    background-image: linear-gradient(to right, #FF0000, #ff8000, #FF00FF, #00FFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.header {
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 99999;
    box-shadow: 0px 0px 10px 0px rgba(255, 63, 155, 0.2);
    height: 65px;
}
.header .site-logo {
    width: 20%;
}
.header .header-menu {
    width: 80%;
    display: flex;
    justify-content: flex-end;
}
.header .header-menu div {
    margin: 0px 20px;
    display: flex;
    align-items: center;
}

.mobile-header {
    display: flex;
    align-items: center;
    padding-top: 2px;
    height: 40px;
    box-shadow: 0px 0px 10px 0px rgba(255, 63, 155, 0.2);
}
.mobile-menu .menu-item {
    color: #fff;
    text-align: right;
    padding: 10px 20px;
    border-bottom: solid 1px #666;
    background: #272727;
}
#mobile-menu-button {
    display: flex;
    background: #272727;
    height: 100%;
    align-items: center;
    padding: 0px 15px;
}
#mobile-menu-button div {
    width: 50%;
}
input {
    background: #333;
    border: #fff;
    color: #fff;
    box-shadow: none;
    padding: 2px 10px;
}
.row {
                display: flex;
            }
            .col-md-6 {
                width: 50%;
                padding: 5%;
            }
            .box {
                background-color: #333;
                border-radius: 5px;
                min-height: 255px;
                padding: 20px;
                color: #fff;
                font-size: 16px;
            }
            #inputText {
                border: solid 1px #ffffff;
                width: 100%;
            }
            .output-box {
                box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.5);
            }
            #translateButton {
                margin-top: 30px;
            }
            textarea {
                box-sizing: border-box; 
                overflow-y: hidden;     
                resize: none;          
            }
            #outputText {
                display: none;
                opacity: 0;
                visibility: hidden;
                transition: visibility 0s, opacity 0.5s linear;
            }
            #outputText.visible {
                opacity: 1;
                visibility: visible;
                transition: visibility 0s linear 0s, opacity 0.5s linear 0s;
            }
            select {
                margin-bottom: 30px;
                padding: 5px 10px;
                width: 200px;
                border-radius: 3px;
                background: #272727;
                color: #fff;
            }
            .count {
                text-align: right;
                color: #666;
                font-size: 14px;
                display: flex;
            }
            .count span {
                color: #666;
            }
            .count div {
                width: 50%;
            }
            .count a {
                color: yellow;
            }
            @keyframes blink {
                0% { opacity: 1; }
                50% { opacity: 0; }
                100% { opacity: 1; }
            }
            .blinking {
                animation: blink 1s infinite;
            }
            .line {
                display: flex;
                margin: 20px 0px;
                line-height: 40px;
            }
            #style-Instructions {
                margin-left: 150px;
            }
            #style-Instructions p, #style-Instructions li {
                color: #999;
            }
            .setup label {
                width: 150px;
            }
            .setup select {
                margin-bottom: 0px;
            }
            .setup {
                margin: 50px 0px;
            }
            .setup fieldset {
                padding: 30px 20px;
            }
            .setup div{
                margin: 0px 10px;
            }
            #pc-copy {
                margin-bottom: 10px;
                display: none;
            }
            #mobile-button {
                display: none;
            }
            .account-board {
                width: 160px;
                height: 100px;
                padding: 65px 20px 0px 20px;
                position: fixed;
                top: 0;
                right: 20px;
                background: #272727;
                border-radius: 0px 0px 8px 8px;
                margin: 0px !important;
                box-shadow: 0px 0px 10px 0px rgba(255, 63, 155, 0.2);
                transform: translateY(-102%);
                z-index: 1;
                text-align: center;
            }
            .account-board button {
                    position: absolute;
                    right: 10px;
                    bottom: 10px;
                    border-radius: 50px;
                    padding: 5px 20px;
                    border: solid 1px #666;
                    background: none;
                    margin: 0 auto;
            }
            .account-board #points {
                font-size: 20px;
                font-weight: 600;
            }
            .account-board #change-points {
                margin: 0px;
                color: red;
                height: 20.67px;
            }
            .account-board p {
                margin-bottom: 0px;
            }
            
            .fade-in {
                animation: fadeIn 1s;
                animation-fill-mode: forwards;
            }
            
            .fade-out {
                animation: fadeOut 1s;
                animation-fill-mode: forwards;
            }
            
            .slide-in {
              animation: slidInBounce 1s ease forwards; 
            }
            .slide-out {
                animation: slidOutBounce 1s ease forwards; 
            }
            
            @keyframes fadeIn {
                from { opacity: 0; }
                to { opacity: 1; }
            }
        
            @keyframes fadeOut {
                from { opacity: 1; }
                to { opacity: 0; }
            }
            
            @keyframes slidInBounce {
                0% {
                    transform: translateY(-102%); 
                }
                80% {
                    transform: translateY(10px); 
                }
                100% {
                    transform: translateY(0);
                }
            }
            
            @keyframes slidOutBounce {
                0% {
                    transform: translateY(0); 
                }
                20% {
                    transform: translateY(10px); 
                }
                100% {
                    transform: translateY(-102%);
                }
            }
            
    .mobile-menu-background {
        display: none;
    }
    .plan-icon {
        font-size: 12px;
        font-weight: 600;
        color: #272727;
        padding: 1px 5px;
        border-radius: 5px;
        background: rgb(245, 147, 36);
        margin-left: 5px !important;
        margin-right: 0px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
.task-notice {
    animation: fadeIn 0.5s;
    margin: 5px 0px;
}

.connect-button {
    font-size: 14px;
    border: solid 1px #272727;
    border-radius: 30px;
    padding: 5px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #272727;
    transition: transform 0.3s ease;
}
.connect-button:hover {
    transform: scale(1.05);
}
.connect-button img {
    margin-right: 5px;
}
.connect-button span {
    border-radius: 50px;
    border: solid 1px #FFFFFF;
    padding: 3px 15px;
}

/* pc */
@media (min-width: 1280px) {
    #mobile-button {
        display: none;
    }
    #user-info {
        display: flex;
    }
}

/* mobile */
@media (max-width: 1280px) {
    body {
        margin: 0px;
    }
    .container {
        margin: 20px 20px;
    }
    .row {
        width: 100%;
    }
    .header {
        text-align: center;
        padding: 0px;
        z-index: 9999;
    }
    .header img {
        padding: 0px;
    }
    .header-menu {
        display: none !important;
    }
    .mobile-menu {
        display: block;
        position: fixed;
        top: -100%;
        left: 0;
        right: 0;
        transition: top 0.5s;
    }
    .mobile-menu div {
        text-align: center;
        margin-bottom: 10px;
    }
   .mobile-menu.open {
        top: 64px;
        z-index: 2;
    }
    .line {
        display: block !important;
    }
    #mobile-menu-button {
        justify-content: flex-end;
        text-align: right;
        width: 100%;
    }
    #mobile-menu-button div {
        border-radius: 3px;
        color: #fff;
        padding: 2px 5px;
    }
    .header .site-logo {
        margin-left: 20px;
    }
    .row {
        display: block;
    }
    .col-md-6 {
        width: 100%;
        padding: 0px;
    }
    #introduction {
        margin-bottom: 50px;
        margin-top: 58px;
    }
    #mobile-menu-background {
        display: none;
        width: 100%;
        height: 100%;
        background: #272727;
        z-index: 1;
        position: fixed;
    }
    #mobile-button {
        margin-top: 30px;
    }
    #mobile-button div {
        width: 50%;
    }
}