@font-face {
    font-family: "Poppins";
    src: url("/css/fonts/poppins.woff2") format("woff2");
    font-display: swap;
}

body,
html {
    height: 100%;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: Poppins, sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}
.logo img {
    width: 200px;
    height: auto;
    padding-top: 10px;
}

.nav {
    display: flex;
    gap: 20px;
}
.nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}
.nav a:hover {
    color: #9800ff;
}
.nav a:focus {
    outline: 2px solid #ffeb3b;
}

.logo .big {
    display: inline;
}
.logo .small {
    display: none;
}
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
}

.content-container {
    flex: 1 0 auto;
    padding: 0 2em;
    min-height: calc(100vh - 150px);
}
.post-ul {
    padding: 0;
}

.post-list {
    border: 1px solid #f5f5f5;
    padding: 20px;
    margin-bottom: 40px;
    list-style-type: none;
    background-color: #f5f5f5;
    transition: transform 0.3s ease;
}
.post-list:hover {
    transform: scale(1.04);
}
.post-url {
    color: black;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}
.post-url:hover {
    color: #9800ff;
}
.post-intro {
    margin: 2em 0;
}
.post-tag {
    margin: 0.5em 0;
}
.post-tags {
    padding: 0.2em 0.4em;
    border: 1px solid #d4d4d4;
    border-radius: 1em;
}
.post-tags:hover {
    border: 1px solid #e6e6e6;
    background-color: white;
}
.post-tags-url {
    color: black;
    text-decoration: none;
}
.post-tags-url:hover {
    color: #9800ff;
}

.text-url {
    color: black;
}
.text-url:hover {
    color: #9800ff;
}

.post-tags + .post-tags {
    margin-left: 1em;
}

.contact {
    display: flex;
    align-items: center;
    margin: 2em 0;
}
.contact-img {
    max-width: 5em;
    border-radius: 5em;
}
.contact-text {
    font-size: 16px;
    margin-left: 10px;
}

.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
.footer-icon {
    max-width: 3em;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.footer-content a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.footer-content a:hover {
    text-decoration: underline;
}

/* Women */
.icon-women {
    max-width: 2em;
}
/*
.icon-women {
    padding: 0.2em;
    border: 0.1em solid #9800ff;
    border-radius: 0.2em;
    transform: rotate(20deg);
}
*/

@media (max-width: 600px) {
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .nav.active {
        display: flex;
    }
    .nav a {
        padding: 10px 0;
        width: 100%;
        text-align: center;
        border-top: 1px solid #555;
    }
    .logo .big {
        display: none;
    }
    .logo .small {
        display: inline;
        max-width: 4em;
        margin-right: 1em;
    }
    .burger-menu {
        display: flex;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}
