:root {
    --brand-color: #ff7000;
}

body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;

    background: var(--brand-color);
}

header .title {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-size: 96px;
    line-height: 150%;

    color: #ffffff;
}

main {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.5rem;

    /*box-sizing: border-box;*/
    width: 100%;

    background: url("/img/background.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;

    /* Inside auto layout */
    flex: none;
    /*order: 1;*/
    align-self: stretch;
    /*flex-grow: 0;*/
}

footer {
    /* Footer */

    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 5px;
    gap: 10px;

    /* Inside auto layout */
    flex: none;
    order: 2;
    align-self: stretch;
    flex-grow: 0;
}

footer .content {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

footer .content p {
    /* Footer Text */

    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    /* identical to box height, or 20px */

    color: #ffffff;
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

footer a {
    color: inherit;
}

footer a:visited {
    color: inherit;
}

section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;

    width: 100%;
    max-width: 30rem;
    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);

    flex: none;
    order: 0;
    flex-grow: 0;
}

.general h1,
.links h1,
.with-gradient-sqr .title h1 {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 5px;
    gap: 10px;

    max-width: 30rem;

    background: var(--brand-color);

    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;

    /* Title */
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 125%;

    color: #ffffff;
}

.general .content,
.with-gradient-sqr .content {
    /* Container */

    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 10px;
    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.general .content p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;

    color: #000000;
    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.links .content {
    /* Container */

    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 10px;

    max-width: 30rem;

    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.links .content p {
    color: dimgray;
}

.links .content .entry-pair {
    /* Pair 1 */

    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    padding: 0px;
    gap: 10px;

    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.links .content .entry-pair .entry {
    /* Entry */

    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
    gap: 10px;

    background: rgba(255, 255, 255, 0.75);

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 1;
}

.links .content .entry-pair .entry img {
    width: 2rem;
    height: 2rem;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

.links .content .entry-pair .entry .link {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;

    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
}

.with-gradient-sqr .title {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;

    width: 100%;
    max-width: 30rem;

    background: #000000;

    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.with-gradient-sqr .title h1 {
    /* Frame 2 */

    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 5px;

    margin: 0 0 auto 0;

    background: black;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

.flag-ukr {
    margin: 0 0 0 auto;
    width: 3rem;

    background: linear-gradient(
        180deg,
        #005cbb 0%,
        #005cbb 50%,
        #fed600 50%,
        #fed600 100%
    );

    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}
