:root,
html {
    font-family: "Inter", sans-serif;
    --text-primary: oklch(100% 0.00011 271.152);
    --text-secondary: oklch(95.82% 0.02066 17.23);
    --primary: oklch(60.275% 0.16855 349.984);
    --secondary: oklch(68.574% 0.15633 349.689);
    --accent: oklch(41.13% 0.12613 350.961);
    --highlight: oklch(71.301% 0.19222 340.747);
    font-size: 16px;
}

body {
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
    color: var(--text-primary)
}

.wrapper {
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--primary);
}

.wrapper__card {
    min-width: fit-content;
    min-height: fit-content;
    background-color: var(--secondary);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 1.3rem;
    padding: 2rem;
    box-shadow: 0.2rem 0.5rem 0.5rem 0.2rem oklab(30.919% 0 -0.00004 / 0.322);
}

.wrapper__card__information {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wrapper__card__h1__p {
    display: inline;
    text-wrap: nowrap;
    font-size: 1rem;
    color: var(--text-secondary);

}

.wrapper__card__information h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary)
}

.wrapper__card__logo {
    margin-left: 1.5rem;
    margin-right: 2rem;
    border: 3px black solid;
    height: 128px;
    border-radius: 50%;
    align-self: center;
}

.link-button {
    display: flex;
    gap: 0.5rem;
    flex-direction: row;
    height: fit-content;
    width: fit-content;
    padding: 1rem;
    border-radius: 1rem;
    background-color: var(--primary);
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background-color 75ms;
    cursor: pointer;
    text-wrap: balance;
}

.link-button:hover {
    background-color: var(--highlight);
}

.bmc-logo {
    height: 16px;
    width: auto;
}