@font-face {
    font-family: 'Pontano Sans', Helvetica;
    src: url('../fonts/pontanosans/PontanoSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/***********/
/* GENERAL */
/***********/

body {
    font-family: 'Pontano Sans', sans-serif;
    /*background-image: url("../images/bg.png");*/
    background-color: rgba(247, 249, 6, 0.2);
}

.logo {
    max-width: 200px;
    height: auto;
}

.header {
    border-bottom: 10px solid rgba(244, 244, 244, 0.3);
    text-align: center;
}

.content {
    padding: 0.3rem;
}

.content .inner {
    text-align: center;
    color: rgba(127, 127, 41, 1) !important;
}

.full {
    background-color: rgba(0, 0, 0, 0.06);
}

p {
    color: rgba(127, 127, 41, 1);
    font-size: 1.3rem;
    line-height: 1.5rem;
}

.font-large {
    text-shadow: 0 0 5px #f7f906;
    font-size: 1.7rem !important;
    line-height: 1.7rem;
}

.font-small {
    font-size: 1.1rem !important;
}

a {
    color: rgba(127, 127, 3, 1);
}

h1 {
    font-weight: normal;
    padding-bottom: 0;
}

.site-title {
    padding-top: 0.6rem;
    margin-bottom: 0;
}

.site-title a {
    text-decoration: none;
    color: #feff06;
    text-shadow: 0 0 5px black;
    font-size: 110% !important;
}

.site-title a:hover {
    text-decoration: none;
    color: #fff;
    text-shadow: 0 0 5px black;
    font-size: 110% !important;
}

.site-description {
    margin-left: 45px;
    color: rgba(51, 44, 35, 0.8);
}

.logo {
    width: 130px;
    height: auto;
    float: right;
}

.font-large {
    font-size: 1.3rem;
    font-weight: 500;
}

.font-menu {
    font-size: 1.1rem;
    font-weight: 500;
}

li {
    margin-bottom: 0.6rem;
    color: #444;
}

li a {
    text-decoration: none;
    border: 1px solid #ccc;
    color: #811523;
    background-color: rgba(244, 244, 244, 0.5);
    padding: 0.444em 0.555em 0.333em;
}

li a:hover {
    color: #333;
    background-color: rgba(244, 244, 244, 0.9);
}

.content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.caption {
    text-align: center;
    font-style: italic;
}

.footer {
    font-size: 0.9em;
    color: #555;
    text-align: center;
    min-height: 7em;
    border-top: 10px solid rgba(244, 244, 244, 0.3);
}

/*********/
/* MENUS */
/*********/

@media only screen and (max-width: 767px) {
    .menu {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

.menu {
    font-size: 0.95em;
    padding-top: 0;
    height: 2.9em;
    line-height: 1em;
    padding-left: 0;
}

ul.mainmenu {
    list-style: none;
    padding: 0;
}

ul.mainmenu li {
    display: inline;
    padding-right: 0.3em;
}

.box-shadow-menu {
    position: relative;
    padding-left: 1.25em;
}

.box-shadow-menu:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 2em;
    height: 0.333em;
    background: #555;
    box-shadow: 0 0.5em 0 0 #555,
    0 1em 0 0 #555;
}

