/* -------- General: ---------- */
* {
    font-family: Roboto, Arial;
}

body {
    height: 100%;
    margin: 0;
    padding-top: 60px;
    padding-bottom: 30px;
}

.main-page, 
.index-main, 
.section {
    width: 820px;
    margin-top: 60px;
    margin-left: 330px;
    margin-bottom: 60px;
}

.ama-drug-pyt {
    color: #656565;
    font-style: italic;
}

.poem {
    color: #6e3819;
    font-style: italic;
    margin-left: 100px;
}

/* --------------------- HEADINGS --------------------- */
/* h1 е само за логото */ 
h1 {
    font-size: 16px; 
    color: white; 
    text-shadow: 1px 1px 3px rgb(43, 43, 43);
    resize: none;
    white-space: nowrap;
    user-select: none;
}
/* h2 е за приветствие за добре дошли */ 
h2 {
    font-size: 22px;
    font-weight: 500;
    color: rgb(51, 51, 51);
}
/* h3 е за заглавия на раздели */ 
h3 {
    font-size: 18px;
    color: rgb(51, 51, 51);
    font-weight: 500;
}
/* h4 е за заглавия на ПОДРАЗДЕЛИ */ 
h4 {
    font-size: 16px;
    color: rgb(51, 51, 51);
    font-weight: 400;
}

/* за коментари със ситен текст */
.small-comment-text {
    font-size: 11px;
}

/* -------- HEADER ---------- */
.header {
    background-color: white;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 2px solid grey;
}

.left-section {
    /* background-color:#c7c092; */
    width: 250px;
    margin-left: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo-image {
    width: 50px;
    margin-right: 12px;
    opacity: 0.65;
    border-radius: 4px;
}

.site-name {
    height: 50px;
    width: 180px;
}

.site-name-line-1 {
    letter-spacing: 6px; 
    margin-top: 2px;
    letter-spacing: 2px;
}
.site-name-line-2 {
    letter-spacing: 8px; 
    margin-top: -4px;
    letter-spacing: 3px;
    word-spacing: 1px;
}

.navigation {
    flex: 1;
    margin-left: 50px;
    margin-right: 80px;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content:end;
}

/* -------- FOOTER ---------- */
.footer {
    height: 26px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
}

.footer-text {
    font-size: 14px;
    user-select: none;
}

/* -------- Others ---------- */

/* -------- resize page -------- */
@media screen and (max-width: 1200px) {
    .header {
        justify-content: left;
    }
    .left-section {
        margin-left: 4px;
    }
}