@font-face {
    font-family: "oswald-bold";
    src: url(./assets/Oswald-Bold.ttf) format(truetype);
}

@keyframes blink {
    0% {
        border: 2px solid #00b5dd;
    }

    50% {
        border: 0px solid transparent;
        border-color: transparent;
    }

    100% {
        border: 2px solid #00b5dd;
    }
}

.no-mevent {
    pointer-events: none;
}

html,
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0;
    text-align: center;

    background-color: #525252;
}

.osald-bold {
    font-family: "oswald-bold";
}

.content {
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;

    .header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        /* margin-bottom: 5px; */
        padding: 0 20px;

        background-color: #525252;

        img {
            height: 35px;
            width: auto;
            margin: 5px;

            /* border: 1px solid #fff;
            border-radius: 50%; */
        }

        p {
            margin: 0;

            font-size: 25px;
            text-align: center;

            color: #fff;
        }

        .community-bland {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 0px;
        }

        .social-links {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
    }

    .article {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        overflow-y: auto;

        width: 100%;
        height: 100%;
    }

    .article .article-company-target {
        font-size: 20px;
        text-align: center;
        width: 100%;

        position: relative;
        display: inline-block;

        img {
            display: block;
            height: auto;
            width: 100%;
            opacity: 0.65;
            filter: none;

            &.dark-mode {
                filter: brightness(0.65) contrast(2);
            }
        }

        p {
            position: absolute;
            top: calc(50% - 80px);
            left: 50%;
            transform: translate(-50%, -50%);

            font-size: 3.5rem;
            font-weight: bold;
            text-align: center;

            color: #fff;
            text-shadow: 2px 2px 4px #000;

            border-bottom: 2px solid #fff;
            padding-bottom: 10px;
        }
    }
}
