.main-content {
    margin-top: 50px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: rgb(247 248 250 / var(--tw-bg-opacity, 1));

    img {
        height: 40px;
        margin-right: 10px;
    }

    .settings-icon {
        padding: 7px;
        background-color: white;
        border: 5px;
    }
}

#toggleSettings {
    display: none;
}

#toggleSettings:checked~.settings-tab {
    right: 0;
}

.settings-tab {
    z-index: 20;
    position: fixed;
    right: -550px;
    top: 0;
    height: 100vh;
    max-width: 400px;
    align-items: flex-end;
    transition: right 0.3s ease;

    .close-settings {
        width: fit-content;
        padding: 7px;
        background-color: white;
        border: 5px;
    }
}

.icon {
    user-select: none;

    &.thin {
        font-variation-settings:
            'wght' 200;
    }

    &.black {
        color: black;
    }

    &.gray {
        color: #757574;
    }

    &.blue-dark {
        color: #185265;
    }
}

@media only screen and (min-width:1200px) {
    .settings-tab {
        position: initial;

        .close-settings {
            opacity: 0;
            pointer-events: none;
        }
    }

    .settings-icon {
        opacity: 0;
        pointer-events: none;
    }
}