body {
    background: #F61A25;
}
section.main {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100vw;
}
section.main .main-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
    margin: auto;
    height: fit-content;
    width: fit-content;
}
section.main .main-title h1 {
    aspect-ratio: 372 / 340;
    height: auto;
    width: clamp(224px, 70vw, 372px);
}
section.main .main-title p {
    color: #fff;
    display: block;
    font-weight: 700;
    text-align-last: justify;
    text-justify: inter-character;
    text-transform: uppercase;
    width: clamp(224px, 70vw, 372px);
}

footer {
    aspect-ratio: 1 / 1;
    background: url(../images/bg-footer.svg) 100% 100% no-repeat;
    background-size: contain;
    position: fixed;
    bottom: 0;
    right: 0;
    height: auto;
    width: clamp(320px, 60vw, 800px);
    max-width: 900px;
}

footer dl {
    display: flex;
    justify-content: flex-end;
    gap: lamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    position: absolute;
    bottom: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    right: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}

footer dl dt{
    font-size: clamp(.5rem, 0.91vw, 1.5rem);
    font-weight: 700;
    margin: auto 0 0 0;
}

footer dl dd {
    width: clamp(48px, 7.5vw, 128px);
}