@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --text-color: #FFbFE3;
    /* --background-color: #8181F4; */
    --background-color: #391189;
}

html,
body {
    box-sizing: border-box;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.2rem;
    margin: 0;
}


body {
    display: flex;
    justify-content: center;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

h1,
h2 {
    color: var(--text-color);
    text-transform: uppercase;
}

#langToggle {
    color: var(--text-color);
    cursor: pointer;
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .main {
        width: 100% !important;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
    }
}

.nobreak{
    white-space:nowrap;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    width: 50%;
    height: 100vh;
}

.row {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1rem;
}

.row.graph {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.row .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.row .content .link {
    align-self: center;
    cursor: pointer;
}

.row.top-line {
    margin-top: 1rem;
    border-top: 2px solid var(--text-color);
}

.title.bottom-line {
    border-bottom: 2px solid var(--text-color);
}

.row h2 {
    margin-top: .8rem;
    margin-bottom: .8rem;
}

.button {
    background-color: var(--text-color);
    border: none;
    border-radius: 2rem;
    color: var(--background-color);
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    padding: .5rem 1rem;
    text-transform: uppercase;
}