@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

body {
    color: rgb(20, 20, 20);
    padding: 0;
    margin: 0;
    font-family: "Montserrat";
    font-weight: 100;
    overflow-x: hidden;
}

#knihy, #clanky, #ohlasy {
    background-color: #968982;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
}

#links {
    display: flex;
    gap: 2vw;
    padding-left: 5vw;
    padding-right: 5vw;
    align-items: center;
    text-decoration: none;
    height: 10vh;
    text-align: center;

}

#links a {
    color: white;
    transition: color 0.5s linear;
    font-family: serif;
}

#links a:hover {
    color: #00154c;
}

#current-page {
    font-size: 40px;
    text-decoration: underline 4px #00154c;
    text-underline-offset: 4px;
}

#background {
    width: 100vw;
    height: 100vh;
    background-image: url("fotky/bata.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

h1 {
    font-size: 40px;
    color: #00154c;
    margin: 0;
    margin-top: 20px;
    margin-left: 5vw;
}

h3 {
    font-weight: 500;
    margin: 0;
}

#main-text {
    background-color: #7d7068c0;
    padding: 20px 5vw 20px 5vw;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80px;
    width: 100vw;
    background-color: #7d7068;
}

footer h3 {
    margin-left: 5vw; 
}

.signature {
    margin: 0;
    margin-left: 5vw;
    margin-top: 5px;
    font-size: 13px;
}

.signature span {
    font-family: "Russo One";
}

@media (max-width: 700px) {
    .kniha, .ohlas {
        flex-wrap: wrap;
    }

    #current-page {
        font-size: 20px;
    }
}

/* knihy */

#knihy {
    gap: 50px;
}

.kniha {
    display: flex;
    flex-direction: row;
    margin-left: 5vw;
    width: 80vw;
    gap: 40px;
}

.kniha img {
    height: 300px;
    width: auto;
}

.kniha a {
    color: rgb(20, 20, 20)
}


/* clanky */

#boty {
    width: 100vw;
    height: 400px;
    object-fit: cover;
    margin-top: 10px;
    margin-bottom: 50px;
}

#clanky-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 5vw; 
    margin-right: 5vw;
    margin-bottom: 50px;
}

#clanky-links a {
    font-size: 20px;
    color:rgb(20, 20, 20);
    font-weight: 400;
}

/* ohlasy */

#ohlasy-links {
    gap: 20px;
    margin-top: 50px;
    margin-left: 5vw;
    margin-bottom: 50px;
}

.ohlas {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 80vw;
    margin-top: 50px;
}

.ohlas img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.ohlas h2 {
    margin: 0;
    color: rgb(20, 20, 20);
}

.ohlas h3 {
    margin: 0;
}
