@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #e7e7e7;
    font-family: 'poppins', sans-serif;
    overflow-x: hidden;
}

.container {
    position: relative;
}

.header {
    position: relative;
    text-align: center;
    background-color: #1f2937;
    font-size: medium;
    box-shadow: 0px 8px 16px 0px #00000033;
    margin-bottom: 20px;

    nav {
        position: relative;
        color: #000000;
        left: 240px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 15px;

        a {
            color: #000000;
            text-decoration: none;
            margin: 0 10px;
        }
    }

    .nav-logo {
        color: #fff;
        display: flex;
        margin-left: -240px;
        position: relative;
        height: 36px;
        width: auto;
        left: -240px;
        margin-right: 10px;
    }

    .nav-logo svg {
        color: #fff;
    }


    .dropbtn {
        background-color: #1f2937;
        color: #ffffff;
        padding: 20px;
        border: none;
        font-size: medium;
        font-weight: bold;
    }

    .dropbtnimg {
        background-color: #1f2937;
        padding: 8px;
        padding: auto;
        border: none;
    }

    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        width: auto;
        white-space: nowrap;
        border: 2px #ccc solid;
        z-index: 1;
    }

    .dropdown-content a {
        color: #000000;
        padding: 8px 15px 10px 8px;
        text-decoration: none;
        display: block;
        text-align: start;
    }

    .dropdown-content a:hover {
        background-color: #ddd;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown:hover button {
        background-color: #1b2430;
        border-bottom: none;
        border-top: none;
    }

    button:hover {
        background-color: #1b2430;
        border-bottom: none;
        border-top: none;
    }
}

.intro {
    margin-top: 20px;
    text-align: center;
}

.usersection {
    display: flex;
    align-items: center;
    margin-left: 30px;
    margin-left: 400px;
}

.userimage {
    fill: #e7e7e7;
    height: 36px;
    width: auto;
}

.LogButton {
    background-color: #1f2937;
    color: #ffffff;
    padding: 16px;
    border: none;
    font-size: medium;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}

.LogButton:hover {
    background-color: #1b2430;
}

.intro {
    margin-top: 20px;
    text-align: center;
}

.textcenter {
    text-align: center;
}

.site-footer {
    background-color: #1f2937;
    color: #ffffff;
    padding: 48px 24px 32px;
    font-family: system-ui, -apple-system, sans-serif;
}

.site-footer .footer-inner {
    max-width: 1024px;
    margin: 0 auto;
}

.site-footer .footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-bottom: 32px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .site-footer .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr;
    }
}


.site-footer .footer-brand {
    display: flex;
    align-items: center;
}

.site-footer .footer-logo {
    height: 36px;
    width: auto;
    color: #ffffff;
    margin-right: 10px;
}

.site-footer .footer-column h4 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-column li {
    margin-bottom: 8px;
}

.site-footer .footer-column a {
    color: #60a5fa;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.site-footer .footer-column a:hover {
    opacity: 0.7;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
}

.site-footer .footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.site-footer .footer-social a {
    color: #60a5fa;
    font-size: 24px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.site-footer .footer-social a:hover {
    opacity: 0.7;
}

.site-footer .footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

html,
body {
    height: 115%;
}

body {
    display: flex;
    flex-direction: column;
}

.site-footer {
    margin-top: auto;
}