﻿body {
    margin: 0;
    min-height: 100vh;
    background: url('hytale_bg.jpg') center/cover no-repeat fixed;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    font-family: 'Montserrat', 'Whitney', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative;
    color: white;
}

.main {
    overflow-y: auto;
    width: min(80%, 1200px);
}

.container {

}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 64px;
    padding: 18px 0px;

    /*background: #1d1d27;*/
    opacity: 0.9;
    border-radius: 10px;

    h1 {
        font-size: 48px;
        margin: 0 0 0 24px;

        /*background: linear-gradient(#ffe98d, #e19f27);*/
        /*-webkit-background-clip: text;*/
        /*background-clip: text;*/
        /*-webkit-text-fill-color: transparent;*/
        color: #ecbc62;

        text-shadow: 1px 1px 2px #1d1d27;

    }
}

.footer {
    margin-top: 64px;
    margin-bottom: 20px;
}

.post-list {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    margin-top: 32px;
}

.post {
    background: #1d1d27;
    opacity: 0.9;
    border-radius: 10px;
    padding: 32px 64px 64px;
    display: flex;
    flex-direction: column;
}

.post-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 32px;

    background: linear-gradient(#ffe98d, #e19f27);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ecbc62;
}

.post-content {
    font-size: 18px;
    text-align: justify;
    color: #D5D5D0;

    h1 {
        font-size: 32px;
        margin-top: 32px;
        margin-bottom: 24px;
    }

    h2 {
        font-size: 24px;
        margin-top: 24px;
        margin-bottom: 18px;
    }

    h3 {
        font-size: 18px;
        margin-top: 18px;
        margin-bottom: 12px;
    }
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.social-network-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 16px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s;
}

.social-network-button:hover {
    transform: translateY(-3px);
}

.discord-button {
    background: #5865F2; /* Discord brand color */
}

.logo {
    width: 1.4em;
    height: 1.4em;
    margin-right: 12px;
    fill: currentColor;
    stroke: currentColor; /* allow outlines to match text color */
}

.x-button {
    background: #111; /* x-brand: dark */
}

.button-row {
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.logo-svg {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}