* { box-sizing: border-box; }
html { font-size: 16px; }
body {
    color: #222;
    font-family: sans-serif;
    font-size: 18px;
    line-height: 1.6;
    word-break: break-word;
    margin: 0;
    background: #f5f5f5;
}
a { 
    color: #3045db;
    text-decoration: none;
 }
a:hover { color: #6a5eff; }
.wrap {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
}
header {
    padding: 34px 0 20px;
    border-bottom: 5px solid #dfdfdf;
}
.logo {
    color: #333;
    text-decoration: none;
    font-size: 2em;
    font-weight: 800;
}
.tagline {
    margin: 3px 0 0;
    color: #777;
    font-size: .95rem;
}
.lang {
    float: right;
    margin-top: 25px;
    font-family: Arial, sans-serif;
    font-size: .85rem;
}
.lang a { margin-left: 20px;
font-size: 16px; }
main {
    background: #fff;
    margin: 28px 0;
    padding: 34px 42px 42px;
}
h1 {
    margin-top: 0;
    font-size: 2rem;
    line-height: 3;
    margin: -5px 0 20px;
    text-align: center;
    text-transform: uppercase;
}

.intro {
    background: #fff1db;
    padding: 30px;
    margin-bottom: 30px;
}

.guide {
    padding: 22px 0;
    border-top: 2px dashed #f77b72;
}
.guide:first-of-type { border-top: 0; }
.guide h2 {
    margin: 0 0 7px;
    font-size: 1.5rem;
}
.meta {
    margin: 0 0 10px;
    color: #777;
    font: .86rem/1.5 sans-serif;
}
.status {
    display: inline-block;
    padding: 2px 8px;
    background: #f77b72;
    border-radius: 2px;
    margin-right: 8px;
    color: #fff;
}
footer {
    padding: 10px 0 35px;
    color: #888;
    font: 1rem sans-serif;
}

.guide-link {
    background: #f77b72;
    color: #fff;
    padding: 19px;
    display: block;
    text-align: center;
    font-size: 18px;
    position: relative;
    text-transform: uppercase;
    overflow: hidden;
}

.guide-link:hover {
    color: #fff;
}

.guide-link:hover:after {
    right: -50px;
    background-color: rgba(255, 255, 255, 0.2);
}

.guide-link:after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    right: -475px;
    top: -255px;
    transform: rotate(45deg);
}


@media (max-width: 600px) {
    main { padding: 25px 22px 30px; }
    .lang { float: none; margin-top: 12px; }
    .lang a:first-child { margin-left: 0; }
}
