@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@font-face {
    font-family: "Saw cfcr000";
    src: url(customFont/Saw\ cfcr000.TTF);
}

* {
    box-sizing: border-box;
    margin: 0;
    /* padding: 0; */
    /* background-color: #24252a; */
}

body {
    height: 100vh;
}

li, a, button {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: black;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 10%;
    background-color: white;
}

.logo {
    cursor: pointer;
    margin-right: auto;
    /* width: 100px;
    height: auto; */
}

.nav_links {
    list-style: none;
}

.nav_links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: #7a0b16;
}

button {
    margin-left: 20px;
    padding: 9px 25px;
    background-color: #7a0b16;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    color: white;
}

button:hover {
    background-color: #55080f;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: gray;
    border-radius: 10px;
}

@media (max-width: 1230px) {
    li, a, button {
        font-size: 13px;
    }

    header {
        padding: 10px 3%;
    }
}

@media (max-width: 1100px) {
    .toggle-button {
        display: flex;
    }

    .nav_links {
        display: none;
        width: 100%;
        
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: .5rem 1rem;
    }

    .nav_links.active {
        display: flex;
        flex-direction: column;
    }

    .nav_links.active li {
        padding: 15px;
    }
}
