@font-face {
    font-family: cormgaramond;
    src: url(res/Fonts/cormgaramond.woff2);
}

@font-face {
    font-family: mulish;
    src: url(res/Fonts/mulish.woff2);
}

@font-face {
    font-family: archand;
    src: url(res/Fonts/archand.ttf);
}

h1{
    font-family: cormgaramond, serif;
}

h3{
    font-family: mulish;
    font-weight: lighter;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-variant-ligatures: no-contextual;
}
.logo{
    transition: 1s;
}
.logo:hover {
    transition-duration: 0.6s;
    cursor: pointer;
    filter: drop-shadow(0 0 8px #ffb700);
    color: #48036b;
    opacity: 1;
}

.logo:active {
    transition-duration: 0.6s;
    cursor: grabbing;
    filter: drop-shadow(0 0 8px #00e1ff);
    color: #48036b;
    opacity: 1;
}

body {
    background-color: #202020;
    font-size: 16px;
    margin-top: 130px;
}

.navbar{
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 100px;
    z-index: 10;
    background-image: url('res/Images/brass.png');
    background-size: cover;
    justify-content: center;
}

p{
    margin-left: 250px;
    margin-right: 250px;
    font-family: cormgaramond;
    font-size: 30px;
}

.maincontent{
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-items: center;
    padding-bottom: 25%;
    padding-top: 5%;
    background-image: url('res/Images/wood.jpg');
    background-repeat: repeat;
}

.herodiv{
    padding-top: 30px;
    padding-bottom: 30px;
}

.herobutton{
    font-family: cormgaramond;
    font-weight: lighter;
    font-size: 20px;
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
    background-image: url(res/Images/aluminum.png);
    border-width: 0;
    border-radius: 10px;
    transition-duration: 0.6s;
}
.herobutton:hover{
    transition-duration: 0.6s;
    cursor: pointer;
    filter: drop-shadow(0 0 8px #ffb700);
}

.herobutton:active{
    transition-duration: 0.6s;
    cursor: pointer;
    filter: drop-shadow(0 0 8px #00e1ff);
}

.footlink {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
}

.footlink:hover {
    filter: drop-shadow(0 0 8px #fff);
    color: #3f6f8b;
    opacity: 1;
}
.foootlink:active {
    filter: drop-shadow(0 0 8px #ffb700);
    color: #ffb700;
}

.footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
}

footer {
   /* position: fixed; */
    bottom: 0;
    width: 100%;
    background-color: #063c58;
    background-image: url("res/Images/linen.png");
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footermenu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 0 0;
    flex-wrap: wrap;
}

.menu__item {
    font-family: cormgaramond, serif;
    list-style: none;
}

.copytext{
    font-family: mulish, sans-serif;
}