body {
    font-family: 'Open Sans', sans-serif;
    background-color: rgb(228, 228, 234);
    padding-left: 50px;
    padding-right: 50px;
}

.oben {
    display: flex;
    justify-content: space-between;
}

.skip_buttons {
   justify-content: center; 
   display: flex;
}

.next {
    display: inline-block;
    background-color: #afb3b5;
    padding: 1px;
    width: 50px;
    height: 50px;
    color: black;
    text-align: center;
    border: 5px; /* add this line */
    border-radius: 15px; /* add this line */
    cursor: pointer;

    font-size: 150%;
    margin-top: 5px;
    margin-left: 5px;

    opacity: 0.7;
    -webkit-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.next:hover {
    opacity: 1;
}

.random {
    display: inline-block;
    background-color: #afb3b5;
    padding: 1px;
    width: 50px; 
    height: 50px;
    color: black;

    border: 5px; /* add this line */
    border-radius: 15px; /* add this line */
    cursor: pointer;
    text-justify:distribute;
    font-size: 200%;
    font-weight: bold;
    margin-top: 5px;

    opacity: 0.7;
    -webkit-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.random:hover {
    opacity: 1;
}

.previous {
    display: inline-block;
    background-color: #afb3b5;
    padding:1px;
    width: 50px;
    height: 50px;
    color: black;
    text-align: center;
    border: 5px; /* add this line */
    border-radius: 15px; /* add this line */
    cursor: pointer;
    
    font-size: 150%;
    margin-top: 5px;
    margin-right: 5px;

    opacity: 0.7;
    -webkit-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.previous:hover {
    opacity: 1;
}

.video-player {
    margin: auto;

    padding: 0;
    width: 100%;
    height: 100%;
    max-height: fit-content;
    max-width: fit-content;
    position: relative;
    font-size: 0;
    overflow: hidden;
  }

.MP4 {
    width: 100%;
    max-height: 720px;
}

.controls {
    display: flex;
    position: absolute;
    bottom: 0;
    justify-content: center;
    height: 25px;
    width: 100%;
    background: rgba(0,0,0,0.25);
}

.controls_pause {
    margin-top: 1px;

    background: none;
    border: 0;
    font-size: 25px;
    color: white;
    text-align: center;
    align-self: center;
    outline: 0;
    padding: 0;
    cursor: pointer;
    max-width: 100%;

    opacity: 0.7;
    -webkit-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out
}

.controls_pause:hover {
    opacity: 1;
}

.controls_volume_slider {
    margin-top: 10px;
    margin-left: 20px;
    width: 100px;
    height: 5px;
    background: #ffffff;
    outline:none;
    opacity: 0.7;
    -webkit-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;
}

.controls_volume_slider:hover {
    opacity: 1;
}

.controls_volume_slider::-moz-range-thumb {
    margin-top: 10px;
    width: 20px;
    height: 20px;
    background-color: #f9f9f9;
    cursor: pointer;

    background-image: url("images/volume_icon.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.controls_fullscreen_button {
    opacity: 0.7 ;
    margin-top: 2.5px;
    margin-left: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    cursor: pointer;
    border-radius: 5px;

    outline-style:solid;
    outline-width: 1px;
    outline-color: #81888b;
    
    width: 20px;
    height: 20px;
}

.controls_video_id {
    opacity: 0.7 ;
    margin-top: 2.5px;
    margin-left: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
    color: black;
    background-color: white;
    cursor: copy;
    border-radius: 5px;

    outline-style:solid;
    outline-width: 1px;
    outline-color: #81888b;
    
    width: 40px;
    height: 20px;
}

.controls_fullscreen_button:hover {
    opacity: 1 ;
}

.fullscreen_img {
    width: 80%;
    height: 80%;
}

.discord_button {
    opacity: 0.7 ;
    margin-top: 2.5px;
    margin-left: 20px;

    display: flex;
    background-color: white;
    cursor: pointer;
    border-radius: 5px;
    border-color: white;
    
    width: 30px;
    height: 30px;

    background-image: url("images/discord_logo.png");
    background-size: 175%;
    background-position: center center;
    background-repeat: no-repeat;
}

.discord_button:hover {
    opacity: 1;
}