body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: lightgrey;
}

.header-socials{
    padding-left: 3vw;
    align-items: center;
    margin-left: auto;
}

.header-socials a{
    color: transparent;
}

.header-socials img{
    max-width: 32px;
    margin-left: 1vw;
}

.flex{
    display: flex;
    justify-content: space-between;
}

.text-padding{
    padding-left: 1vw;
    padding-right: 1vw;
}

.content {
    font-size: 1.2rem;
}

.content li{
    padding-bottom: 0.5vh;
}

.brand-image{
    width: 100px;
    vertical-align: middle;
}

.brand-align{
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: black;
}

.brand-align:hover .brand-text {
    text-decoration: underline;
}

.brand-text {
    vertical-align: middle;
    font-size: 2rem;
}

.header-brand-align{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-border {
    border-bottom: 2px solid;
    transition: border-bottom 0.5s ease;
}

.header-sticky {
    position: relative;
    padding-top: 2vh;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: lightgrey;
}

.header-nav{
    list-style: none;
    text-align: right;
    font-size: 1.2rem;
}

.header-nav ul {
    list-style: none;
}

.header-nav li {
    list-style: none;
    display: inline-block;
    padding: 1vw;
    transition: background-color 0.3s;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: white;
    margin-bottom: 1vw;
}

.header-nav-icon{
    display: none;
}

.header-nav a {
    text-decoration: none;
    color: black;
}

.header-nav li:hover {
    background-color: darkgrey;
}

.head-to-top{
    font-size: 2rem;
    cursor: pointer;
    border: 2px solid black;
    display: inline-block;
    color: white;
    transition: background-color 0.3s;
    background-color: black;
    border-radius: 3px;
}

.head-to-top:hover{
    font-size: 2rem;
    cursor: pointer;
    border: 2px solid black;
    display: inline-block;
    color: black;
    background-color: white;
    border-radius: 3px;
}

.footer-border {
    border-top: 2px solid;
}

.sticky-footer{
    background-color: black;
    margin-top: auto;
}

.footer-nav{
    list-style: none;
    text-align: left;
    background-color: black;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    list-style: none;
    padding-bottom: 1vh;
}

.footer-nav a {
    text-decoration: none;
    color: white;
}

.footer-nav a:hover{
    text-decoration: underline;
}

.footer-nav-icon{
    color: white;
    display: none;
}

.brand-footer{
    color: white;
    text-align: center;
    padding-bottom: 2vh;
}


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

    .content {
        flex: 1;
        font-size: 1.2rem;
        text-align: center;
    }

    .content ul{
        text-align: left;
    }

    .content ol{
        text-align: left;
    }

    .text-padding{
        padding-left: 4vw;
        padding-right: 4vw;
    }
    

    .flex{
        text-align: center;
        display: inline;
    }

    .header-socials{
        padding-top: 1vh;
        align-items: center;
        margin-left: auto;
        padding-bottom: 0.1vh;
    }

    .header-border {
        border-bottom: 2px solid;
        padding-bottom: 1vh;
    }

    .header-nav{
        list-style: none;
        text-align: center;
        font-size: 2rem;
    }
    
    .header-nav li {
        list-style: none;
        display: block;
        padding: 1vw;
        transition: background-color 0.3s;
        border: 1px solid #ccc;
        border-radius: 3px;
        background-color: white;
        margin-bottom: 1vw;
        opacity: 0;
        transform: translateY(-10px);
    }

    .header-nav-links{
        display: none;
        z-index: 1;
        flex-direction: column;
        text-align: left;
    }

    .header-nav-links.show {
        display: flex;
    }

    .header-nav-links.show li {
        animation: fadeInUp 0.5s ease forwards;
    }

    .header-nav-icon{
        display: block;
        cursor: pointer;
    }

    .footer-border{
        padding-top: 1vh;
        border-top: 2px solid;
    }

    .footer-nav{
        list-style: none;
        text-align: left;
        background-color: black;
        font-size: 2rem;
        padding-left: 5vw;
        padding-bottom: 3vw;
    }

    .footer-nav-icon{
        color: white;
        display: block;
        cursor: pointer;
    }

    .footer-nav-links{
        display: none;
        z-index: 1;
        flex-direction: column;
    }

    .footer-nav-links.show {
        display: flex;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
