/* Stylesheet for martelos.si */

/* SECTION 1 - Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&display=swap');

/* SECTION 1.5 - General settings */
h1, h2, h3, h4, h5, h6, p, ul, ol, dl {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* SECTION 2 - Sections */

.p-header {
    width: 100%;
    height: 150px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: lightsteelblue;
    overflow-x: hidden;
    padding-top: 20px;

}

.p-header-menu {
    width: 100%;
    height: 50px;
    position: fixed;
    left: 0;
    top: 150px;
    background-color: steelblue;
}

.p-header-menu div {
    margin-left: 20px;
}

.p-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: lightsteelblue;
    text-align: left;
}

.p-main {
    margin: 200px auto 0; /* Adjust for fixed header and menu */
    width: 80%;
    padding-top: 20px;
    padding-left: 20px;
    min-height: calc(100vh - 15% - 50px - 50px); /* Adjust for fixed header, menu, and footer */
}
/* SECTION 3 - Text styles */
.p-header-text {
    padding-right: 5%;
    text-align: right;
    font-size: xxx-large;
    margin-bottom: 0;
    margin-top: 10px;
    color: steelblue;
}

.p-header-subtitle {
    padding-right: 5%;
    text-align: right;
    font-size: large;
    font-style: italic;
    margin-top: 0;
}

.p-header-menu a {
    color: white;

}

.p-header-menu a:hover {
    color: lightsteelblue;
}
.p-header-menu span {
    color: white;
    vertical-align: center;
    padding-left: 40px;
    line-height: 50px;
}

.p-footer p {
    margin-left: 20px;
}

.p-footer a {
    color: black;
}

.p-footer a:hover {
    color: steelblue;
}