﻿html {
    position: relative;
    min-height: 100%;
}

body {
    box-sizing: border-box;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #282a2e;
    font-family: Inter,sans-serif;
    color: white;
    font-size: 16px;
}

:where(img.w-image) {
    box-sizing: border-box;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    outline-width: 1px;
    max-width: 100%;
    display: block;
    height: auto;
}

:where(div.w-html-embed) {
    display: contents
}

:where(a.w-link) {
    box-sizing: border-box;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    outline-width: 1px;
    min-height: 1em;
    display: inline-block
}

:where(ol.w-list) {
    box-sizing: border-box;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    outline-width: 1px;
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px
}

:where(ul.w-list) {
    box-sizing: border-box;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    outline-width: 1px;
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px
}

:where(div.w-text) {
    box-sizing: border-box;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    outline-width: 1px;
    min-height: 1em
}

header {
    background-color: #2d2f33;
    display: block;
    margin-bottom: 0;
    padding: 30px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.header-content-left:hover {
    color: #fff;
}

.header-icon-container {
    width: 74px;
    height: 74px;
    margin-right: 20px;
}

.header-icon-container img {
    width: 100%;
    height: 100%;
}

.header-title-container {
    align-self: center;
    margin-left: 10px;
}

.header-title {
    font-family: Inter,sans-serif;
    font-weight: 700;
    display: inline-block;
    font-size: 24px;
}

.header-subtitle {
    font-weight: 300;
    font-size: 20px;
}

.header-content-right {

}

.dropdown-toggle {
    display: none;
}

.dropdown-toggle-btn {

}

.navbar {
    font-size: 20px;
}

.navbar-link {
    text-decoration: none;
    color: #fff;
}

.navbar-link:hover {
    text-decoration: underline;
    color: #fff;
}

.navbar-btn {
    margin: 0 30px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.wrapper footer {
    margin-top: auto;
}

#account-banner {
    background-color: #212020;
    padding: 15px 30px;
    display: flex;
    color: white;
    align-items: center;
    justify-content: space-between;
}

.profile-section {
    display: flex;
    color: white;
    align-items: center;
}

.avatar-container{
    margin-right: 15px;
}

    .avatar-container img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
    }

.username-container {
    font-size: 1.3em;
}

.btn-section .btn {
    color: white;
    border-color: white;
    padding: 7px 15px;
}

    .btn-section .btn:hover {
        color: #6CE2F9;
        border-color: #6CE2F9;
    }

.btn-blue {
    color: #fff;
    background-color: #6CE2F9;
    border: none;
    padding: 7px 25px;
    border-radius: 10px;
}

.btn-blue:hover {
    background-color: #30B9CC;
}

footer {
    display: flex;
    justify-content: space-between;
    background-color: #2d2f33;
    padding: 30px;
}

    footer .copyright {
        color: #fff;
        font-weight: 300;
    }

.footer-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    row-gap: 20px;
}

    .footer-navbar a {
        text-decoration-line: none;
        color: #fff;
        font-weight: 300;
    }

        .footer-navbar a:hover {
            text-decoration: underline;
            color: #fff;
        }


@media all and (max-width: 1279px) {
    
}

@media all and (max-width: 768px) {
    footer {
        font-size: 14px;
    }

    .navbar-link {
        display: none;
    }

    .navbar-btn {
        margin: 0;
        font-size: 16px;
    }

    .header-title {
        font-family: Inter,sans-serif;
        font-weight: 700;
        display: inline-block;
        font-size: 20px;
    }

    .header-subtitle {
        font-weight: 300;
        font-size: 16px;
    }
}

@media all and (max-width: 480px) {
    footer {
        font-size: 12px;
    }

    .footer-navbar {
        column-gap: 10px;
    }

    .header-icon-container {
        width: 54px;
        height: 54px;
        margin-right: 10px;
    }

    header {
        padding: 15px;
    }

    #account-banner {
        padding: 15px 15px;
    }

    .avatar-container img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    .username-container {
        font-size: 16px;
    }

    .btn-section .btn {
        color: white;
        border-color: white;
        padding: 7px 15px;
        font-size: 14px;
    }
}