:root {
    --bg-color0: #FFFFFF;
    --bg-color1: #EDAEA7;
    --bg-color2: #FF8C82;
    --bg-color3: #CE836E;
    --bg-color4: #DE6258;
    --bg-color5: #C9CACE;
    --bg-color6: #8AB192;
    --bg-color7: #FDDED7;
}

body {
    margin: 0;
    font-family: "Molengo", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-image: linear-gradient(white, var(--bg-color7));
    min-height: 100vh;
}

h1, h2, h3 {
    margin: 0;
}

.content a {
    text-decoration: none;
    color: var(--bg-color4);
    font-weight: 600;
}

.header {
    top: 0;
    position: sticky;
    background-image: linear-gradient(var(--bg-color1), var(--bg-color2));
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}

.header a {
    text-decoration: none;
}

.sidebar-back {
    position: absolute;
    color: #555;
    text-align: center;
    background-color: var(--bg-color2);
    background: none;
    font-size: 24px;
    left: 3px;
    cursor: pointer;
    border: 1px #777 solid;
    border-radius: 5px;
}

.sidebar-back:active {
    transform: translateY(2px);
}

.sidebar-toggle {
    position: absolute;
    color: #555;
    text-align: center;
    background-color: var(--bg-color2);
    background: none;
    font-size: 24px;
    right: 3px;
    cursor: pointer;
    border: 1px #777 solid;
    border-radius: 5px;
    z-index: 250;
}

.sidebar-toggle:active {
    transform: translateY(2px);
}

.sidebar {
    position: fixed;
    top: 0;
    padding-top: 30px;
    right: -250px;
    width: 250px;
    height: 100%;
    text-align: left;
    line-height: 1.0em;
    background-image: linear-gradient(var(--bg-color2), var(--bg-color1));
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.5s ease-in-out;
    z-index: 5;
    pointer-events: auto;
    overflow: auto;
}

.sidebar h2 {
    text-align: center;
}

.sidebar.active {
    right: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin: 20px 15px;
}

.sidebar a {
    color: #333;
    font-size: 18px;
}

.content {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

.news {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 10px;
}

.news-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.news-item div h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.news-item div p {
    font-size: 14px;
    color: #555;
}

@media (max-width: 600px) {
    .news-item {
        flex-direction: column;
    }

    .news-item img {
        width: 100%;
        height: auto;
    }
}

.icon-reg {
    width: 20px;
}

.icon-small {
    width: 20px;
}

img {
    max-width: 320px;
}

.center {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content button {
    background-color: var(--bg-color1);
    padding: 5px 15px 5px 15px;
    right: 3px;
    cursor: pointer;
    border: 1px #777 solid;
    border-radius: 5px;
}

.content button:active {
    transform: translateY(2px);
}

.content input {
    background-color: var(--bg-color5);
    margin: 10px;
    padding: 10px;
    border: 1px #777 solid;
    border-radius: 5px;
}

.content input:hover {
    border: 1px var(--bg-color2) solid;
}

.overview {
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.overview a {
}

.overview img {
    max-width: 72px;
    float: left;
    margin-right: 10px;
}

.horizontal {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.horizontal p {
    margin-top: -5px;
}

.thumbail {
    width: 80px;
    margin-right: 10px;
}
