* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    background: #272727;
}

p,
ul,
ol,
li,
h1,
h2,
h3 {
    color: #e6e6e6;
}

header {
    width: 100%;
    padding: 40px 0 0;
}

.header-logo-rmycxue img {
    max-width: 200px;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 25px 10px;
}

footer {
    width: 100%;
    padding: 20px;
    background-color: #10170f;
    color: #fff;
    text-align: center;
}

h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 20px -10px 27px;
}

h2 {
    font-size: 26px;
    font-weight: 100;
    margin: 30px 0 10px;
}

h3 {
    font-size: 24px;
    font-weight: 100;
    margin: 60px 0 20px;
}

a,
a:hover {
    color: #000;
    text-decoration: none;
}

p {
    line-height: 1.5;
    margin: 0 0 25px;
}

p.comment-author-gsmz,
p.faq-question-zxz {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 7px;
}

p.comment-form-xouvh {
    font-size: 26px;
    font-weight: 100;
    margin: 30px 0 10px;
}

ul,
ol {
    line-height: 1.5;
    margin: 0 0 25px 19px;
}

li {
    margin: 0 0 5px;
}

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    cursor: pointer;
    transition: filter 0.3s ease;
}

img:hover {
    filter: brightness(80%);
}

figure {
    margin: 0 0 25px;
    text-align: center;
    line-height: 1.5;
    color: #ccc;
}

figcaption {
    display: block;
    margin: 0 auto;
    max-width: 450px;
}

.action-container-cwml {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 34px;
}

.action-container-cwml span.action-login-bol {
    display: block;
    padding: 13px 18px 9px;
    background: #7e7e7e;
    color: #e6e6e6;
    font-size: 24px;
    font-weight: 700;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35),
                 -1px -1px 0 rgba(255, 255, 255, 0.15);
    box-shadow: 4px 4px 0px rgba(120, 120, 120, 0.6);
}

.action-container-cwml span.action-login-bol:hover {
    background: #5e5e5e;
    color: #e6e6e6;
    box-shadow: 4px 4px 0px rgba(94, 94, 94, 0.5);
}

.action-container-cwml span {
    display: block;
    padding: 13px 18px 9px;
    background: #ecc782;
    color: #333333;
    font-size: 24px;
    font-weight: 700;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.35),
                 -1px -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 4px 4px 0px rgba(236, 199, 130, 0.6);
}

.action-container-cwml span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: wave 4s infinite 1s;
}

@keyframes wave {
    0% {
        left: -100%;
    }
    40% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.action-container-cwml span:hover {
    background: #c8a264;
    color: #333333;
    box-shadow: 4px 4px 0px rgba(200, 162, 100, 0.4);
}
