/*Font*/
@font-face {
    font-family: "Montserrat";
    src: url(/fonts/Montserrat/static/Montserrat-Light.ttf);
}

/*Home page*/
body {
    font-family: "Montserrat", Arial, sans-serif;
}

/*Navbar*/
#navbar {
    width: 100%;
    height: 40px;
    background-color: white;
    display: flex;
}

#navbar .logo {
    width: 40px;
    height: auto;
}

#navbar .search {
    width: 20px;
    height: auto;
    padding-left: 250px;
    margin: 10px;
}

#navbar .domov {
    padding-left: 600px;
    margin: 10px;
}

#navbar .blog {
    padding-left: 100px;
    margin: 10px;
}

#navbar .o_nas {
    padding-left: 100px;
    margin: 10px;
}

#nav_buttons a {
    color: inherit;
    text-decoration: none;
}

/*Title and main image*/
#main {
    width: 100%;
    height: 60%;
    display: block;
    position: relative;
}

#main .main {
    width: 100%;
    height: auto;
}

#main .main_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #7C8C6F;
    padding: 40px 60px;
    text-align: center;
    color: white;
    width: 30%;
}

.main_title h1 {
    font-size: 70px;
}

/*About us section of home page*/
#about_us {
    display: flex;
    width: 100%;
    min-height: 350px;
}

#about_us .left_about_us {
    width: 33%;
    background-color: #7C8C6F;
    color: white;
    text-align: center;
    padding: 60px;
}

.read_more {
    color: inherit;
    text-decoration: none;   
}

.left_about_us h1 {
    font-size: 60px;
}

.left_about_us p {
    font-size: 22px;
}

#about_us .right_about_us {
    width: 67%;
    background-color: white;
    color: black;
    padding: 60px;
}

.right_about_us h1 {
    font-size: 50px;
}

.right_about_us p {
    max-width: 60%;
    font-size: 22px;
}

/*Blog and About us page title*/
#title_box {
    position: relative;
    width: 100%;
    height: 80px;
    background-color: #7C8C6F;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abt_title {
    color: white;
    margin: 0;
    font-size: 45px;
}

/*About us page*/
.container {
    padding-top: 6%;
    width: 70%;
    display: flex;
    justify-content: center;
    margin: auto;
}

.abt_left {
    width: 35%;
}

.abt_left img {
    width: 100%;
}

.abt_right {
    width: 65%;
}

.abt_right p {
    max-width: 60%;
}

.abt_right h1 {
    margin: 30px;
}

/*Footer*/
#footer {
    width: 100%;
    height: 200px;
    background-color: #7C8C6F;
    margin: auto;
    text-align: center;
    color: white;
    font-size: 10pt;
}

.footer_title {
    color: white;

}

.copyright_contact {
    color: white;
    text-decoration: none;
}

.copyright_contact a {
    color: white;
    text-decoration: none;
}

.blog_preview {
    display: flex;
    width: 950px;
    height: 350px;
    background-color: white;
    justify-self: center;
    margin: auto;
    border: 1px solid lightgray;
    margin-top: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    color: black;
}

.blog_preview img {
    width: 45%;
}

.blog_preview_text_right {
    padding-left: 15px;
}

.see_all_posts_button {
    color: white;
    background-color: #7C8C6F;
    display: flex;
    justify-self: center;
    font-size: 16pt;
    text-decoration: none;
    padding: 10px;
    margin-top: 20px;
}

.post_whole {
    display: flex;
    flex-direction: column;
    width: 950px;
    height: auto;
    background-color: white;
    justify-self: center;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid lightgray;
}

.post_data {
    display: flex;
    justify-content:space-between;
    align-items: center;
    width: 100%;
}

#post_title {
    padding-left: 10px;
}

#post_date {
    padding-right: 10px;
    font-size: 12pt;
    color: gray;
}

#post_author {
    padding-left: 10px;
    font-size: 12pt;
    color: gray;
}

#post_text {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}


