@font-face {
    font-family: 'Gelica';
    src: url('Gelica-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('TT_Norms_Pro_Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --beige: #F3F1EC;
    --red: #EB5D40;
    --padding: clamp(24px, 5vw, 5vw);
}

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

body {
    font-family: "TT Norms Pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: var(--beige);
    background-color: var(--red);
}

::selection {
    color: var(--red);
    background: var(--beige);
}

.wrapper {
    display: flex;
    flex-direction: column;
    row-gap: clamp(4rem, 3.745rem + 1.046vw, 5rem);
    padding: var(--padding);
    min-height: calc(100vh - (var(--padding) * 2));
}

.container {
    display: flex;
}

.logo svg {
    width: auto;
    height: clamp(7.5rem, 6.225rem + 5.229vw, 12.5rem);
}

.symbol svg {
    width: auto;
    height: clamp(4rem, 2.789rem + 4.967vw, 8.75rem);
}

a {
    color: var(--beige);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.justify-flex-end {
    justify-content: flex-end;
}

.rotate {
    transform: rotate(-5deg);
}

h1 {
    font-family: "Gelica", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: right;
    font-size: clamp(2.25rem, 1.676rem + 2.353vw, 4.5rem);
    line-height: 1.3;
    margin: 0;
}

p {
    font-size: clamp(1.375rem, 1.279rem + 0.392vw, 1.75rem);
    max-width: 30ch;
    line-height: 1.5;
    margin: 0;
}

p.small-text {
    font-size: 14px;
}

.container:last-child {
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}