@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-primary: oklch(68.628% .185 148.958);
    --color-white: oklch(83.768% .001 17.911);
}

.link-image {
    height: 100%;
}

a:hover {
    transform: scale(1.1);
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--color-white);
    transition: transform 300ms;
}

body {
    background-color: #110d0d;
    margin: 0;
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
}

h1 {
    margin-bottom: 0;
}

h2 {
    margin: 0.5rem 0;
}

main {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.streamers {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.streamer {
    width: 500px;
    height: 100px;
    background-color: #1b1717;
    border: 2px solid #a4a4a4;
    display: flex;
    position: relative;
    border-radius: 2rem;
    justify-content: space-between;
    color: var(--color-white);
    align-items: center;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.streamer img {
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.position {
    color: rgba(255,255,255,0.6);
    margin-right: 1rem;
}

.location {
    margin-left: 0.4rem;
    color: rgba(255,255,255,0.6);
}

.streamer div {
    height: 100%;
    display: flex;
    align-items: center;
}

/*.streamer span {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background-color: darkred;*/
/*    border-radius: 50%;*/
/*}*/

.amount {
    color: var(--color-primary);
}

.streamer .amount {
    font-weight: 900;
    font-size: 1.25rem;
}
