.colors {
    --background-color: #ffffff;
    --header-footer-color: #d4d4d4;
    --font-color: black;
}






body {
    background-color: var(--background-color);
    margin: 0;
}
@font-face {
  font-family: Cooper;
  src: url(/fonts/Cooper-Regular.ttf);
}
@font-face {
  font-family: Poppins;
  src: url(/fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: Garamond;
  src: url(/fonts/EBGaramond-Regular.ttf);
}
@font-face {
  font-family: Lato;
  src: url(/fonts/Lato-Regular.ttf);
}
@font-face {
  font-family: Playfair;
  src: url(/fonts/Playfair-Display-Regular.ttf);
}
h4, h5, h6 {
    color: var(--font-color);
}
h1 {
    color: var(--font-color);
    margin: 35px 15px;
    font-family: "Cooper";
    font-weight: 400;
    text-align: center;
}
h2 {
    color: var(--font-color);
    font-family: "Cooper";
    font-weight: 400;
    margin: 45px 15px 25px;
}
h3 {
    color: var(--font-color);
    font-family: "Cooper";
    font-weight: 400;
    margin: 0;
}
p {
    color: var(--font-color);
    font-family: "Poppins";
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5em;
}
text {
    color: var(--font-color);
}
a p {
    text-decoration: underline;
    color: var(--font-color);
}
a p:hover {
    text-decoration: none;
}
a {
    text-decoration: underline;
    color: var(--font-color);
}
p a {
    text-decoration: underline;
    color: var(--font-color);
}
p a:hover {
    text-decoration: none;
}
ul a {
    text-decoration: underline;
    color: var(--font-color);
}
ul a:hover {
    text-decoration: none;
}
li {
    color: var(--font-color);
    font-family: "Poppins";
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5em;
}
button {
    cursor: pointer;
    background: none;
    border: solid;
    border-width: 1px;
    border-color: var(--font-color) !important;
    font-family: "Poppins";
    padding: 15px 25px;
    color: var(--font-color) !important;
    transition: color .3s, background-color .3s;
}
@media only screen and (min-width: 700px) {
    h1 {
        font-size: 35px;
    }
    h2 {
        font-size: 45px;
    }
    h3 {
        font-size: 25px;
    }
    button {
        font-size: 18px;
    }
}
@media only screen and (max-width: 700px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 22px;
    }
    button {
        font-size: 16px;
    }
}
button:hover {
    color: var(--background-color) !important;
    background: var(--font-color);
    transition: color .3s, background .3s ease-in-out;
}
.no-button-link {
    color: var(--font-color) !important;
    border-color: var(--font-color) !important;
    border-radius: 0;
    cursor: default;
}
.no-button-link:hover {
    color: var(--font-color) !important;
    border-color: var(--font-color) !important;
    border-radius: 0;
    cursor: default;
}
.img-hover {
    transition: filter .3s ease-in-out;
}
.img-hover:hover {
    transition: filter .3s;
    filter: brightness(75%);
}
.link-underlines {
    text-decoration: underline;
}
.link-underlines:hover {
    text-decoration: none;
}








/* Work Header */

#site-header {
    height: 80px;
}
.header-div {
    width: calc(100% - 60px);
    height: 39px;
    border-bottom: solid 1px var(--font-color);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-title {
    text-decoration: none !important;
}
@media only screen and (max-width: 400px) {
    .header-title h3 {
        font-size: 20px;
    }
}
.header-title:hover {
    text-decoration: underline !important;
}
.menu-div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 500px;
    height: 45px !important;
    z-index: 5;
}
.menu-div a {
    font-size: 18px;
    font-family: "Poppins";
    color: var(--font-color);
    margin: 0 0 0 20px;
    text-decoration: none;
}
.menu-div a:hover {
    text-decoration: underline;
}
@media only screen and (min-width: 700px) {
    #mm-icon-svg {
        display: none;
    }
}
@media only screen and (max-width: 700px) {
    .menu-div {
        display: none;
    }
}
#mm-icon-svg, #mm-icon-svg-x {
    width: 20px !important;
    height: 20px !important;
    position: absolute;
    top: 30px;
    right: 30px;
}
#mm {
    display: none;
}
#mm.show {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--background-color);
}
.mm-div {
    max-width: 600px;
    padding: 50px;
    min-height: calc(100vh - 290px);
    margin: auto;
}
.mm-div p {
    font-size: 18px;
    text-decoration: none;
}
.mm-div a {
    text-decoration: none;
}
#site-header.show, #content.show {
    display: none !important;
}
.work-page .menu-a-work {
    text-decoration: underline !important;
}
.work-page .menu-a-work:hover {
    text-decoration: none !important;
}
.about-page .menu-a-about {
    text-decoration: underline !important;
}
.about-page .menu-a-about:hover {
    text-decoration: none !important;
}








/* Content */

#content {
    min-height: calc(100vh - 225px);
}






/* Footer Menu */

#site-footer {
    height: 74px;
    border-top: solid 1px var(--font-color);
    margin-top: 35px;
}
.copyright {
    width: 100%;
    text-align: center;
}
.copyright p {
    margin: 25px 15px;
}