/* ===== GRUNDEINSTELLUNGEN ===== */html {    font-family: "Open Sans", sans-serif;    margin: 0;    padding: 0;}main {    margin-left: auto;    margin-right: auto;    width: 80vw;    padding-left: 25px;    padding-right: 25px;}header {    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;    .header-wrapper {        margin-left: auto;        margin-right: auto;        width: 80vw;        padding-left: 25px;        padding-right: 25px;        padding-top: 10px;        padding-bottom: 10px;        display: flex;        justify-content: space-between;        align-items: center;        .logo {            width: 80px;        }    }}#groups {    padding: 0;    article {        display: grid;        grid-template-columns: 1fr 4fr 1fr;        grid-template-rows: 1fr;        grid-gap: 20px;        margin-top: 5px;        margin-bottom: 5px;        padding: 10px 20px;        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;        border-radius: 10px;        align-items: center;        justify-content: flex-start;        .logo {            aspect-ratio: 3 / 2;            padding: 0px 10px;            display: flex;            align-items: center;            justify-content: center;            img {                width: 50px;                height: auto;            }        }        .details {            font-weight: bold;            font-size: 1.8rem;            p {                margin: 0;            }        }        .points {            font-size: 1.8rem;        }    }}div.othergroups {    width: 100%;    display: grid;    grid-template-columns: 1fr 1fr 1fr;    grid-template-rows: auto auto;    grid-column-gap: 10px;    grid-row-gap: 5px;    article {        display: grid;        grid-template-columns: 1fr;        grid-template-rows: auto auto;        grid-gap: 3px;        margin-top: 5px;        margin-bottom: 5px;        padding: 10px 20px;        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;        border-radius: 10px;        align-items: center;        justify-content: flex-start;        .logo {            aspect-ratio: 1 / 1;            padding: 0px 10px;            display: flex;            align-items: center;            justify-content: center;            img {                width: 50px;                height: auto;            }        }        .details {            font-weight: bold;            p {                margin: 0;            }        }        .points {            font-size: 0.9rem;        }    }}