@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url("https://use.typekit.net/avt7xek.css");
body {
    font-family: 'Rubik', sans-serif;
    background: var(--backgroundGrey);
}

:root {
    --backgroundGrey: #151618;
    --menuGrey: #2C2C2C;
    --text: white;
    --lightText:  rgb(214, 214, 214);
    --boxes: #252528;
    --linkBlue: #3498db;
}

h1,
a,
h3,
h2,
body,
p {
    padding: 0px;
    margin: 0px;
    text-decoration: none;
    color: var(--text);
}

h1 {
    font-size: 30px;
}

p {
    font-size: 16px;
}

h2 {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 24px;
}

h3 {
    font-weight: 400;
    color: var(--lightText);
    margin-top: 8%;
    margin-bottom: 5px;
    font-size: 18px;
}

.main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 80px;
}

#content {
    width: 650px;
}

.menu {
    width: 100%;
    background: var(--menuGrey);
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
}

.menuBox {
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#menuLogo {
    min-width: 10%;
    display: flex;
    justify-content: center;
}

.menuBox a {
    color: var(--lightText);
}

.menu img  {
    height: 30px;
}

#openMenu {
    display: none;
}

#closeMenu {
    display: none;
}

.menuSort {
    width: 45%;
    display: flex;
}

.right {
    justify-content: flex-start;
}

.left {
    justify-content: flex-end;
}

.menuSort a {
    padding: 25px;
}




@media only screen and (max-width: 600px) {

    #openMenu {
        display: block;
        position: fixed;
        top:0;
        left: 0;
        margin: 15px;
        height: 30px;
        padding: 10px;
        background: var(--backgroundGrey);
        border-radius: 10px;;
    }

    .menuSort a {
        padding: 0px;
    }

    #mobileMenu {
        transform: translateX(-500px);
        transition: all 0.7s ease-out;
    }
    
    .menu {
        width: 85%;
        height: 100%;
        left: 0px;
        display: block;
        z-index: 1;
    }

    .menuSort {
        width: 100%;
        flex-direction: column;
    }

    .menuBox {
        width: 80vw;
        flex-direction: column;
        align-items: baseline;
        font-size: 8vw;
        padding: 15px;
    }

    .menuBox a {
        margin: 20px;
    }

    #menuLogo {
        order: -1;
        justify-content: space-between;
    }

    .mobileNav {
        display: flex;
        justify-content: space-between;
        width: 97%;
    }

    #closeMenu {
        display: block;
        margin: 20px;
    }

    .test a{
        margin: 20px;
    }

}

@media only screen and (max-width: 900px) {
    #content {
        width: 90%;
    }
}