* {
    box-sizing: border-box;
    margin: 0;
}

body {
    background: #424242;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    font-size: 80px;
    font-weight: 150 !important;
}

.text-deco-none {
    text-decoration: none;
}

.text-color,
.typed-cursor {
    color: #e2e2e2;
}

.hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

/* --------------------------------------*/
.player {
    max-width: 750px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    position: relative;
    font-size: 0; 
    overflow: hidden;
}

.player__video {
    width: 100%; 
}

.player__controls {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom: 4px;
    transform: translateY(100%);
    transition: all .3s;
    flex-wrap: wrap;
    background: rgba(0,0,0,0.5);
    align-items: center;
}

.player:hover .player__controls {
    transform: translateY(0);
}

.progress {
    flex: 10; 
    position: relative;
    display: flex;
    flex-basis: 100%;
    height: 5px;
    background: rgba(0,0,0,0.5);
    cursor: ew-resize;
}

.progress__filled {
    width: 50%; 
    background: #ffc600;
    flex: 0;
    flex-basis: 0%; 
}

.player__button {
    background: none;
    border: 0;
    line-height: 1;
    color: white;
    text-align: center;
    outline: 0;
    padding: 0 10px;
    cursor: pointer;
    max-width: 50px;
}

.volume-container, .playback-container, .skip-container {
    display: flex;
    color: white;
    font-size: 16px !important;
}

.volume-container, .playback-container {
    margin-left: 16px;
}

.skip-container {
    margin-left: auto;
}

.player__slider {
    -webkit-appearance: none;
    appearance: none;
    background: transparent; 
    cursor: pointer;
    width: 100px;
}

.player__slider::-webkit-slider-runnable-track {
    background: rgba(251, 255, 0, 0.2);
    height: 10px;
    border-radius: 5px;
}

.player__slider::-webkit-slider-thumb {
   -webkit-appearance: none;
    appearance: none;
    background-color: #ffc600;
    height: 10px;
    width: 10px; 
    border-radius: 50%;
}