* {
    font-family: Helvetica, Arial, sans-serif;
}

:root {
    font-size: 1.5em;
}

body {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    margin: 0;
}

.headline {
    text-align: center;
    background-color: #008726;
    border-left: 1px solid #eeeeee;
}

.headline .logo {
    height: 150px;
    width: 150px;
}

h1 {
    font-weight: normal;
    font-size: 3em;
    color: #ffffff;
}

.sideBar {
    display: flex;
    flex-direction: column;
    width: 500px;
    height: 100vh;
}

.fields {
    border-left: 1px solid #eeeeee;
}

h3 {
    font-size: 1em;
    text-align: center;
    margin: 0;
    padding: 0.3em;
    background-color: #000000;
    color: #ffffff;
}

.fields img {
    width: 100%;
    max-height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 35%;
       object-position: 35%;
    transform-origin: center;
    overflow: hidden;
}

.sponsorWrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    border-left: 1px solid #eeeeee;
}

.sponsors {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    -o-object-fit: contain;
       object-fit: contain;
    box-sizing: border-box;
}

.matches {
    display: flex;
    flex-direction: row;
    width: calc(100vw - 500px);
    height: 100vh;

    .match-list {
        width: 100%;
    }
}

.handball,
.football {
    width: 50%;
    flex-grow: 1;
}

.handball-title,
.football-title {
    height: 5.5rem;
}

.match-list {
    width: 100%;
    height: calc(100vh - 5.5rem);
    margin: 0;
    flex-grow: 1;
    overflow: hidden;
}

.match-list.handball-list {
    border-right: 1px solid #eeeeee;
}

.football-list,
.football-title {
    text-align: right;
}

.match {
    margin: 0;
    padding: 2rem;
    border-bottom: 1px solid #eeeeee;
}

.match h4 {
    margin: 0;
    font-size: 2.3rem;
    font-weight: normal;
}

.match .details {
    font-size: 1.3rem;
    margin: 0;
    margin-top: 0.5rem;
    color: #008726;
}

.handball-title,
.football-title {
    box-sizing: border-box;
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 0;
    padding-top: 0.5rem;
    border: solid #eeeeee;
    border-width: 0 0 1px 0;
}

.football-title {
    border-left: 1px solid #eeeeee;
}

.handball-title h2,
.football-title h2 {
    margin: 0;
    font-size: 2rem;
}

.noMatchesTitle {
    margin: 0.5rem 0;
    font-weight: normal;
    font-size: 1.1rem;
}

.time {
    font-weight: bold;
}

.tournament {
    font-size: 1.3rem;
    margin: 0;
    color: #000000;
}

.stadium {
    color: #008726;
    margin: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-style: italic;
    height: 1em;
    font-weight: bold;
}

