@font-face {
    font-family: jackpot;
    src: url(jackpot.ttf);
}

html,
body {
    height: 100%;
    margin: 0;
    background-color: #DDD;
}

body {
    display: flex;
}

.menu {
    min-width: 250px;
    max-width: 250px;
    background-color: #CCC;
    display: flex;
    flex-direction: column;
}

.menu .selects {
    flex: 0 0 auto;
}

.menu .buttons {
    flex: 0 0 auto;
    text-align: center;
}

.menu .buttons button {
    margin-bottom: 10px;
    width: 90%
}

.menu select {
    display: flex;
    width: 90%;
    margin: 10px auto;
}

.menu .medias {
    flex: 1 1 auto;
    overflow: auto;
}

.menu .medias img {
    border: 2px solid black;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: 200px;
    margin: 10px 0 10px 8px;
    width: 90%;
}

.main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.main .media {
    width: 80%;
    height: 75%;
    text-align: center;
}

.main .media img {
    height: 95%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    margin-top: 10px;
}

.main .media a {
    color: black;
    display: block;
    width: 100%;
}

.main .media video {
    height: 100%;
}   

.main .player {
    font-family: jackpot;
    width: 90%;
    height: 15%;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding: 20px;
}

.main .player > div {
    float: left;
    width: 33.3%;
    text-align: center;
}

.main .player .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.main .player .logo img {
    height: 80%;
    max-height: 75px;
    max-width: 30%;
    margin: 0 10px;
    cursor: pointer;
}

.main .player .logo span {
    font-family: Tahoma, Verdana, sans-serif;
    font-weight: bold;
    color: #990000;
    font-size: 40px;    
}

.main .player .logo span:nth-child(2) {
    margin-left: -6px;
}

.main .player .controls {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

.main .player .controls img {
    height: 80%;
    max-height: 100px;
    max-width: 30%;    
    margin: 0 10px;
    cursor: pointer;
}

.main .player .detail {
    font-family: jackpot;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.main .player .detail img {
    height: 80%;
    max-height: 75px;
    max-width: 30%;
    margin: 0 10px;
    cursor: pointer;
}