/* Universal Styles */

html {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    line-height: 1.3;
    color: rgba(0, 0, 0, 1)
}

body {
    background-color: rgba(201, 194, 179, 1);
    text-align: center;
    margin: 0;
}








/* Menu */

nav {
    padding: 5px 0 5px 0;
    background-color: rgba(168, 158, 148, 0.95);
    position: fixed;
    width: 100%;
}

.menu {
    padding: 0;
}

.menu li {
    display: inline;
    padding: 20px 40px 20px 40px;
}









/* Content universal styles */

h1 {
    font-weight: 800;
    letter-spacing: 0.2em;
    font-size: 42px;
    font-family: sans-serif;
    padding: 110px 0 50px 0;
    margin: 0 auto;
}

h2 {
    font-weight: 300;
    letter-spacing: 0.1em;
    padding: 0;
}

p {
   font-size: 15px;
   text-align: justify;
   max-width: 900px;
   padding: 30px 0 0 0;
   margin: auto;
}

a {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    /* color: rgba(109, 91, 91, 1); */
    transition: color 300ms ease-in 200ms;
}

a:hover {
    color: rgba(204, 55, 77, 1);
}












/* Footer */

footer {
    padding: 50px 0 25px 0;
    width: 100%;
}

.footer {
    text-align: center;
    bottom: 0;
}

.footer_logo {
    display: inline-block;
    vertical-align: middle;
}








/* Sticky footer */

html {
    height: 100%;
}

body {
    height: 100%;
}

.wrapper {
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}