:root {
    --color-accent: #514a38;
    --color-black: #221f17;
    --color-gray: #515049;
    --color-text: #776e52;
    --color-white: #fdf6db;

    --color-interactive: var(--color-accent);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;

    font-family: "Mukta", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    color: var(--color-text);
    background: var(--color-gray);

    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;

    max-width: 605px;
    min-height: 100%;

    background: var(--color-white);
    box-shadow: 0 2px 5px 0 var(--color-black);
}

@media screen and (min-width: 640px) {
    body {
        min-height: unset;
        height: 824px;
    }
}

main {
    position: relative;
    width: 100%;
    height: 100dvh;
    padding: 48px 24px;
    overflow: hidden;
}

@media screen and (min-width: 640px) {
    main {
        padding: 64px;
        height: 100%;
    }
}

main img.first,
main img.second,
main img.third {
    position: absolute;
    width: 360px;
}

main img.first {
    left: -164px;
    top: -150px;
    transform: rotate(-45deg);
}

@media screen and (min-width: 640px) {
    main img.first {
        top: -99px;
    }
}

main img.second {
    right: -123px;
    bottom: -164px;
    transform: rotateZ(180deg);
}

main img.third {
    left: -186px;
    bottom: -258px;
    transform: rotate(260deg);
}

h1,
h2 {
    margin: 24px 0;
    font-family: "Charm";
    font-weight: 700;
    text-align: center;
    color: var(--color-accent);
}

h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
}

h2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 28px;
}

@media screen and (min-width: 640px) {
    h1,
    h2 {
        margin: 48px 0;
    }

    h1 {
        font-size: 48px;
        line-height: 48px;
    }

    h2 {
        font-size: 32px;
        line-height: 32px;
    }
}

a {
    color: var(--color-interactive);
    text-decoration: underline;
    text-decoration-color: var(--color-interactive);
}

p {
    margin: 24px 0;
}

.pre-title {
    width: 240px;
    margin: 0 auto;

    text-align: center;
    text-transform: uppercase;

    font-weight: 600;
}

.event-date {
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: var(--color-accent);
}

@media screen and (min-width: 640px) {
    .event-date {
        font-size: 24px;
        line-height: 24px;
    }
}

.information {
}

figure {
    display: flex;
    gap: 16px;
    margin: 0 0 24px 0;
}

figure img {
    display: block;
    width: 48px;
    height: 48px;
}

@media screen and (min-width: 640px) {
    figure img {
        width: 64px;
        height: 64px;
    }
}

figure figcaption {
    display: block;
}

figure strong {
    font-weight: 600;
}

figure a {
}

.contact {
    text-align: center;
}

.contact a {
}

