@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300&family=Open+Sans:wght@300;400;500&display=swap");

html,
body,
ul {
    margin: 0;
    padding: 0;
}
body {
    --nav-height: 70px;
    --text-color: #444;
    background-color: #eee;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    color: var(--text-color);
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    font-weight: 600;
    height: var(--nav-height);
    width: 100%;
    background-color: #fff;
}
.menu {
    height: 100vh;
    width: 0;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    top: 0;
    overflow: hidden;
    background-color: white;
    transition: 0.5s;
}
nav ul {
    list-style-type: none;
    display: inline-flex;
    flex-direction: column;
}
nav ul a {
    color: var(--text-color);
    text-decoration: none;
    width: 50vw;
    height: var(--nav-height);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.1s;
}
nav ul a:hover,
nav ul a:focus {
    background-color: #f5f5f5;
    color: #111;
}

nav > a:hover img,
nav > a:focus img {
    transform: scale(1.05);
}
nav > a > img {
    transition: 0.3s;
    margin: 5px;
}
nav > a.logo > img {
    width: 137px;
    height: 60px;
}
nav > a.nip {
    display: none;
}
nav > img.nip {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 15px;
    top: 15px;
    display: inline-flex;
}

main {
    /*
    padding: 0;
    margin: 5vw;*/
    width: 100%;
    min-height: 100vh;
    margin-top: var(--nav-height);
}
footer {
    width: 100%;
    background-color: #ffab2d;
    min-height: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 1rem;
    padding-left: 3em;
    box-sizing: border-box;
}
footer ul {
    list-style-type: none;
    min-width: 25vw;
}
footer ul:first-child {
    margin-left: 25vw;
}
footer ul a {
    text-decoration: none;
    color: var(--text-color);
    transition: 0.5s;
}
footer ul a:hover,
footer ul a:focus {
    color: #111;
}
h1 {
    font-family: "Heebo", sans-serif;
    font-size: 3em;
    font-weight: 100;
    margin-bottom: 1rem;
}
b {
    font-weight: 700;
}

.wrapper {
    padding: 3em;
    padding-top: 0;
    max-width: 45rem;
}
.banner {
    width: 100%;
    background-position: center;
    background-size: cover;
    height: 25vh;
}
