/* --- general --- */

* {
    color: #353e43;
    font-family: "Inter";
}

body {
    margin: 0;
}

/* --- list --- */

.unstyled-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* --- flex --- */

.flex-column {
    display: flex;
    flex-direction: column;
}

/* --- layout --- */

#content {
    box-sizing: border-box;
    display: flex;
    height: 100dvh;
    width: 100%;
}

#bar {
    background-color: #628699;
    bottom: 0;
    height: 10px;
    position: fixed;
    width: 100%;
}

/* --- back button --- */

#back-btn {
    font-size: 9pt;
    font-weight: 700;
    left: 48px;
    position: fixed;
    text-decoration: none;
    top: 32px;
    transition-duration: 0.5s;
    transition-property: color, left, top;
    z-index: 1;
}

#back-btn i {
    margin-right: 6px;
    transition: color 0.5s;
}

#back-btn:hover, #back-btn:hover i {
    color: #628699;
}

/* --- tag --- */

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    background-color: #b5c7eb;
    border-radius: 12px;
    color: #394a6b;
    font-size: 9pt;
    font-weight: 500;
    padding: 5px 12px;
    width: fit-content;
}

/* --- media queries --- */

@media only screen and (max-width: 499px) {
    #back-btn {
        left: 5%;
        top: 16px;
    }
}
