/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    line-height: 1.6;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Navigation Bar */
nav {
    background-color: #fff;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
    
    top: 0;
    z-index: 1000;
    margin-bottom: 4rem;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}
nav .logo a img {
    max-height: 48px;
}
nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #444;
    text-decoration: none;
    font-size: 1rem;
    border-bottom:1px solid transparent;
    padding-bottom: 1px;
}

nav ul li a:hover {
    color: #000;
    border-bottom:1px solid rgba(0,0,0,.25);
}

.wrap {
    padding: 2rem 4rem;
    display: grid;
    justify-content: stretch;
    justify-items: start;
    grid-template-rows:auto 1fr auto ;
    min-height: 100vh;
}
/* Header Section */
.header-content {

}
.header-content h1{
    font-weight: 100;
    font-size: 42px;
    line-height: 115%;
}
.header-content p{
    margin: 2rem 0;
    max-width: 480px;
}
footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top:1px solid rgba(0,0,0,.25);
}

.gen-content {

}
.gen-content p {
margin: 2rem 0;
    max-width: 720px;
}
.gen-content p span{
border-bottom:1px solid rgba(0,0,0,.25);
}
.resnav {
    display: none;
}
.temp0 {
    padding: 1rem;
    border:1px solid rgba(0,0,0,.15);
    background-color: rgba(0,0,0,.04);
    border-radius: 1rem;
}
.temp1 {
    padding: 1rem;
    border:1px solid rgba(0,0,0,.15);
    border-radius: 1rem;
}
@media (max-width: 768px) {
    /* --------- */
    .wrap {
    padding: 2rem;

    }
    nav ul {
    display: none;
    }
    .resnav {
        display: grid;
        justify-content: stretch;
        justify-items: stretch;
        align-content: center;
        align-items: center;
        grid-gap: 6px;
        width: 32px;
        cursor:pointer;
    }
    .resnav span{
        display: block;
        width: 100%;
        height: 2px;
        background-color: #000;
    }
    nav .logo a img {
    max-height: 32px;
    }
    /* --------- */
}    