* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif; /* Používanie fontu Roboto pre všetky elementy */
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background: url('/fotky/rex.png') no-repeat center center fixed;
    background-size: cover;
}

header {
    background-color: #8B0000;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    margin: 0;
    font-size: 24px;
}

.header-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
}

.container {
    display: flex;
    margin: 20px;
}

.sidebar {
    width: 250px;
    background-color: #63C0A1;
    border-right: 1px solid #ddd;
    padding: 20px;
}

.sidebar h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.sidebar ul {
    list-style-type: none;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #286090;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}

.content {
    flex-grow: 1;
    padding: 20px;
    background-color: #63C0A1;
}

.content h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 10px;
}

.logo {
    display: flex;
    align-items: center;       /* zarovná obrázok a texty vertikálne */
    justify-content: flex-start; /* texty ostanú naľavo */
    gap: 20px; /* medzera medzi logom a textom */
}

.logo-img {
    max-width: 120px;
    margin: 0 auto;            /* aby bol obrázok centrovaný vo svojom boxe */
}