:root {
    --brand-color: #ff7000;
    --content-width: 40rem;
}

strong {
    font-weight: 600;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    all: unset;
}

p {
    display: block;
}

a:hover {
    cursor: pointer;
}

body {
    font-family: Inter, sans-serif;
    margin: 0;
    background: var(--brand-color);
    color: white;
}

header {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: bold;
    line-height: 1.5;
}

footer {
    padding: 0.25rem;
}

main {
    padding: 1.5rem;
    background: url("/img/background.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

main .inner {
    display: flex;
    flex-direction: column;
    max-width: var(--content-width);
    gap: 1rem;
}

section {
    max-width: 100%;

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

section .title {
    padding: 0 0.25rem;
}

.brand-bg {
    background: var(--brand-color);
}

.black-bg {
    background: black;
}

section .title h1 {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.25;
}

section .content {
    color: black;
    padding: 0.75rem;
}

section .links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (max-width: 600px) {
  section .links {
    grid-template-columns: 1fr;
  }
}

.entry {
    display: flex;
    align-items: center;

    background: rgba(255, 255, 255, 0.75);
    padding: 0.25rem;
    gap: 0.5rem;

    transition: background 200ms;
}

.entry:hover {
    background: white;
    cursor: pointer;
}

.entry img {
  width: 2rem;
  height: 2rem;
}

.flag-ukr {
    width: 3rem;

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