:root {
    --primaryColor: #100302;
    --white: #fcfcf6;
}

*, *::before, *::after {
    box-sizing: border-box;
}


html, body {
    margin: 0;
}

iconify-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    background: url('/imgs/background.jpg') no-repeat center center fixed;
    background-size: cover;

    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}



h1 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 54px;
    letter-spacing: -.4px;

    margin: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn {
    --buttonBackground: var(--primaryColor);
    --buttonColor: var(--white);

    appearance: none;
    outline: none;
    cursor: pointer;
    border: none;
    user-select: none;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    min-height: 2.5em;
    padding: 10px 1.5em;

    background: var(--buttonBackground);
    color: var(--buttonColor);
    border-radius: 10px;

    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;

    transition: .2s;

    &:focus,
    &:hover {
        box-shadow: 0 4px 12px color-mix(in srgb, var(--buttonBackground) 40%, transparent);
    }

    &:active {
        scale: .97;
        transition-duration: .15s;
    }
}

.content {
    max-width: calc(100% - 4vw);
	text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;

    /*padding: 25px 40px;
    border-radius: 7px;
    background: #f7f3ef;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/

    img {
        width: 300px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    p {
        margin: 0;
    }

    a:not([class]) {
        color: inherit;
    }
}
    .content__items {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;

        .btn {
            iconify-icon {
                font-size: 18px;
            }
        }
    }