/* colors: 

Avocado
#959569

Mallard
#233117

Celeste
#cbcfc5

Irish Coffee
#534025

 */
@font-face {
    font-family: SourGummy;
    src: url(/fonts/SourGummy/SourGummy-VariableFont_wdth\,wght.ttf);
}

* {
    font-family: SourGummy;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background :#cbcfc5;
}

.header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    transition: 0.3s;
}

.logo {
    display: block;
}

.logo a img {
    display: block;
    width: 50%;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    z-index: 1;
    transition: 0.3s;
}

.menu li {
    list-style-type: none;

}

.menu li a {
    color: #233117;
    text-decoration: none;
    display: block;
    padding: 40px 20px;
    font-size: 1.5em;
    line-height: 1;
    transition: 0.3s;
}

.menu li a:hover {
    color: #959569;
}

.hamburger {
    position: relative;
    width: 30px;
    height: 4px;
    background: black;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
}

.hamburger:before, .hamburger:after {
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background: black;
    border-radius: 10px;
    transition: 0.3s;
}

.hamburger:before {
    top: -10px;
    width: 20px;
}

.hamburger:after {
    top: 10px;
    width: 25px;
}

.toggle-menu {
    position: absolute;
    width: 30px;
    height: 100%;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}

.hamburger, 
.toggle-menu {
    display: none;

}

.nav input:checked ~ .hamburger {
    background: transparent;
}

.nav input:checked ~ .hamburger:before {
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
}

.nav input:checked ~ .hamburger:after {
    top: 0;
    transform: rotate(45deg);
    width: 30px;
}

.nav input:checked ~ .menu {
    right: 0;
}

.nav button {
    width: 100%;
}

button {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

button {
    margin: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #233117;
    color: white;
    font-size: 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

button a {
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 1080px) {
    .hamburger, .toggle-menu {
        display: block;
    }
    
    .header {
        padding: 10px 20px;
    }

    .menu {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        position: fixed;
        right: -300px;
        top: 0;
        background: #233117;
        width: 300px;
        height: 100%;
        padding-top: 0px;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        padding: 30px;
        font-size: 30px;
        color: #72724a;
    }
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.socials img {
    width: 40px;
    margin: 0 10px;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 1.5rem;
    color: black;
}

.attributes {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 0.5rem;
    color: black;
}


.attributes a:link {
  color: black;
  text-decoration: none;
}


