body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 100svh;
    min-height: 100vh;
}

main section#title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    user-select: none;
}

main section#title div.container {
    width: 100%;
    max-width: var(--max-width);
    padding: 0 20px 20px 20px;
}

main section#title div.container h1.title {
    font-size: 3em;
    word-break: break-word;
}

main section#title div.container div.price {
    max-width: 300px;
    color: white;
    padding: 10px 30px 10px 10px;
    border-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 5px;
    font-size: 1.3em;
    background: linear-gradient(
        to right,
        rgba(26, 44, 94, 1) 20%,
        rgba(26, 44, 94, 0.8) 40%,
        rgba(26, 44, 94, 0.6) 60%,
        rgba(26, 44, 94, 0.4) 80%,
        rgba(26, 44, 94, 0) 100%
    );
}

main section#title div.container div.price span.muted {
    font-style: italic;
}
