/* Obecne */
@font-face {
  font-family: "custom-font";
  src: url("source/fonts/Pencerio-Hairline.ttf");
}

body {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
        url("img/bg.jpg");

    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Navigacni panel */
.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 7px;
    background-color: white;
    width: 100%;
    position: fixed;
    top: 0px;
}

.nav-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.nav-buttons a {
    font-size: 20px;
    text-decoration: none;
    color: #006203;
}

.nav-buttons a:hover {
    cursor: pointer;
}

.menu-logo {
    color: #006203;
    text-decoration: none;
    margin-right: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
}

.menu-logo img {
    width: 48px;
    height: 48px;
}

/* Hlavni obsah */
.content {
    text-align: center;
    background-color: #baff68;
    width: 50%;
    min-height: 1000px;
    padding-top: 90px;
    padding-left: 20px;
    padding-right: 20px;
}

.menu-vydani {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; 
    gap: 10px;
}

.vydani {
    background-color: #9ed757;
    border: 1px solid #6a9139;
    padding: 20px;
    font-size: 20px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    width: 190px;
}

.sub-vydani {
    margin-top: -15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

footer {
    text-align: center;
    background-color: #575757;
    width: 50%;
    min-height: min-content;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

footer p {
    font-family: Arial, Helvetica, sans-serif;
    color: #c9c9c9;
}

footer a {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(202, 179, 254);
}
