.content .big {
    font-size: 18px;
}

.content .blue {
    color: var(--blue);
}

.content .green {
    color: var(--green);
}

.content button.red {
    color: white;
}

.content .red {
    color: var(--red);
}

.content .bold {
    font-weight: bold;
}

.content .inline {
    display: inline;
}

.content p {
    text-align: justify;
}

.content p.big {
    font-size: 16px;
}

.content img.full {
    width: 100%;
}

.content img.half,
.content video.half {
    width: 60%;
    display: block;
    margin: auto;
}

.content img.w80,
.content video.w80 {
    width: 80%;
    display: block;
    margin: auto;
}

.content img {
    max-width: 100%;
}

.content video {
    margin-bottom: 20px;
    border-radius: 10px;
    display: block;
    max-width: 100%;
}

.content img.round {
    border-radius: 5px;
}

.content i {
    padding-left: 2px;
}

.content table {
    width: 100%;
    border-collapse: collapse;
}

.content table td {
    border: 1px solid var(--lightgray);
    text-align: center;
    padding: 15px;
}

.content a.download {
    background-color: var(--blue);
    color: white;
    border-radius: 5px;
    padding: 4px 25px;
}

.content a.download:hover {
    background-color: var(--red);
}

.content .actions {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}

.content .actions a {
    display: block;
    color: var(--blue);
    flex: 1;
    font-weight: bold;
    font-size: 16px;
}

.content .actions a:hover {
    color: var(--red);
}

.content a.link {
    font-size: 14px;
    margin-bottom: 40px;
    display: block;
    width: fit-content;
    color: var(--lightblue);
}

.content a.link i {
    padding-right: 10px;
}

.content a.link:hover {
    color: var(--green);
}

.content .actions a i {
    padding: 0 5px;
}

.content .code {
    display: inline-block;
    background-color: var(--timberwolf);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--dark);
    font-size: 11px;
    direction: ltr;
    unicode-bidi: isolate;
    font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", Consolas, Menlo, Monaco, "Courier New", monospace;
}

.content .practice {
    background-color: var(--lightorange);
    border-radius: 15px;
    padding: 10px 20px;
    color: var(--dark);
    margin: 20px 0;
}

.content .practice span.title {
    font-weight: bold;
}

.content .twoside {
    flex-direction: row;
    display: flex;
    gap: 40px;
}

.content .twoside img {
    display: block;
}

.content .twoside img.col30 {
    width: 30%;
}

.content .twoside img.col20 {
    width: 20%;
}

.content .product {
    display: flex;
    flex-direction: row;
    gap: 20px;
    border: 1px solid var(--lightgray);
    padding: 10px;
    border-radius: 10px;
}

.content .product.w40 {
    width: 20vw;
}

.content .product img {
    height: 100px;
}

.content .product .info {
    flex: 1;
}

.content .product .info .price {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.content .product .info .price .num {
    color: var(--green);
    font-weight: bold;
    font-size: 16px;
}

.content .product .info h1 {
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: var(--blue);
}

.content .product .info a {
    color: white;
    font-size: 15px;
    background-color: var(--red);
    border-radius: 10px;
    padding: 5px 10px;
    margin-top: 10px;
    display: block;
}