.content {
    padding: 20px 0;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    gap: 50px;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 25px;
    text-align: center;
}

.content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 25px;
    text-align: center;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: justify;
}

.fr
{
    display: none;
}

.sv
{
    display: none;
}

.article {
    padding: 10px;
    border-radius: 5px;
    color: var(--dark-color);
}

.article * {
    color: var(--dark-color);
}

.primary-article {
    background-color: var(--light-color);
    border: 1px solid var(--primary-color);
}

.secondary-article {
    background-color: var(--light-bg-color);
    border: 1px solid var(--secondary-color);
}

.standout-article {
    background-color: var(--dark-bg-color);
}

.standout-article * {
    color: var(--light-color);
}

.a-90 {
    width: 90%;
}

.a-80 {
    width: 80%;
}

.a-70 {
    width: 70%;
}

.a-60 {
    width: 60%;
}

.a-50 {
    width: 50%;
}

.a-40 {
    width: 40%;
}

.content a {
    color: var(--primary-color);
    border-radius: 3px;
}

.content a:hover {
    color: var(--secondary-color);
    background-color: var(--light-color);
}

.content .important-btn {
    border-radius: 3px;
    color: var(--light-color);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    max-width: 300px;
    width: 300px;
    max-height: 50px;
    height: 50px;
}

.content .important-btn:hover {
    color: var(--primary-color);
    background-color: var(--light-color);
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.content .important-btn:active {
    color: var(--light-color);
    background-color: var(--light-bg-color);
    border: 1px solid var(--primary-color);
}

.important-btn:disabled, .important-btn:disabled:hover{
    color: grey;
    background-color: #f0f0f0;
    border: 1px solid grey;
}

.content .less-important-btn {
    border-radius: 3px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.content .less-important-btn:hover {
    background-color: var(--light-primary-color);
    cursor: pointer;
}

.flex-column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.flex-column-item {
    flex: 1;
    margin: 10px 0px;
    padding: 0;
    width: 90%;
}

.flex-row-item {
    flex: 1;
    margin: 0;
    padding: 0;
}

.label {
    font-size: 1.2rem;
    font-weight: bold;
    max-width: 80px;
}

.button {
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--light-color);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    max-width: 200px;
}

@media screen and (max-width: 1440px) {
    .content {
        width: 82%;
    }

    .a-40 {
        width: 50%;
    }
}

@media screen and (max-width: 1200px) {
    .content {
        width: 84%;
    }

    .a-50 {
        width: 60%;
    }

    .a-40 {
        width: 60%;
    }
}

@media screen and (max-width: 1000px) {
    .content {
        width: 86%;
    }

    .a-60 {
        width: 70%;
    }

    .a-50 {
        width: 70%;
    }

    .a-40 {
        width: 70%;
    }
}

@media screen and (max-width: 800px) {
    .content {
        width: 88%;
    }

    .a-80 {
        width: 90%;
    }

    .a-70 {
        width: 80%;
    }

    .a-60 {
        width: 80%;
    }

    .a-50 {
        width: 80%;
    }

    .a-40 {
        width: 80%;
    }
}

@media screen and (max-width: 600px) {
    .content {
        width: 90%;
    }

    .a-90 {
        width: 100%;
    }

    .a-70 {
        width: 90%;
    }

    .a-60 {
        width: 90%;
    }

    .a-50 {
        width: 90%;
    }

    .a-40 {
        width: 90%;
    }

    .flex-row {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
}

@media screen and (max-width: 550px) {
    .content {
        width: 92%;
    }

    .a-80 {
        width: 100%;
    }

    .a-70 {
        width: 100%;
    }

    .a-60 {
        width: 100%;
    }

    .a-50 {
        width: 100%;
    }

    .a-40 {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .content {
        width: 94%;
    }
}