:root {
    --seriesHeight: 98%;
}

main {
    position: relative;
}

#western-conference,
#eastern-conference {
    width: 100%;
    height: 44%;
    position: absolute;
}

#western-conference {
    top: 0px;
}

#eastern-conference {
    bottom: 0px;
}

.series {
    height: var(--seriesHeight);
    width: 100%;
    position: absolute;
    bottom: 0px;
}

.top-team,
.bot-team {
    position: absolute;
    outline: 0.2vw solid white;
    border-radius: 1vw;
    display: flex;
}

@media (orientation: portrait) {
    .top-team,
    .bot-team {
        height: 49%;
        width: 100%;
        align-items: center;
        max-height: 100%;
    }

    .wins {
        width: 25%;
        text-align: center;
        height: 100%;
    }

    .logo {
        width: 75%;
        height: 100%;
    }

    .top-team {
        top: 0px;
    }

    .bot-team {
        bottom: 0px;
    }
}

@media (orientation: landscape) {
    .top-team,
    .bot-team {
        height: 100%;
        width: 49%;
        justify-content: center;
        position: absolute;
    }

   .wins {
        max-height: 100%;
        width: 25%;
        text-align: center;
        right: 0px;
    }

    .logo {
        max-height: 100%;
        max-width: 75%;
        left: 0px;
    }

    .top-team {
        left: 0px;
    }

    .bot-team {
        right: 0px;
    }
}

.series-loser {
    opacity: 0.3;
}