/*MOFont jsou moje nahrane fonty od designera*/
@font-face {
    font-family: 'MO2025Font_bold';
    src: url('fonts/CivilPremium-Bold2.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MO2025Font_light';
    src: url('fonts/CivilPremium-Light2.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

    body {
        /*MOFont jsou moje nahrane fonty od designera*/
        font-family: 'MO2025Font_light', Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f5f5f5;
        color: #333;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        min-height: 100vh;
        position: relative;
    }

    .container {
        text-align: left;
        max-width: 450px;
        padding: 20px;
        margin: 20px;
    }

    h1 {
        font-family: 'MO2025Font_bold';
        font-size: 4.5rem;
        font-weight: bold;
        margin: 0 0 20px 0;
        /*color: #444;*/
        color: #515151;
    }

    h2 {
        font-size: 2.5rem;
        font-weight: normal;
        color: #666;
        margin: 0 0 20px 0;
    }

    .details {
        font-size: 1.2rem;
        margin: 20px 0;
        color: #555;
    }

    .background {
        position: fixed;
        top: 0;
        left: 200px;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: url('images/mrak2.png') no-repeat center center/cover;
        opacity: 0.9;
    }

    .buttons {
        margin-top: 100px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        align-items: end;
        justify-items: start;
    }

    /*
    .buttons::before {
        content: "";
        display: block;
        width: 120px;
    }
    */

    .button {
        font-size: 1rem;
        padding: 10px 20px;
        border: 2px solid #666;
        border-radius: 5px;
        text-decoration: none;
        color: #333;
        transition: all 0.3s;
        text-align: center;
        background-color: #f5f5f5;
        width: 120px; /* Fixed width */
    }

    .button:hover {
        background-color: #333;
        color: #fff;
    }

    .button.highlight {
        background-color: #333;
        color: #fff;
    }