@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
}

.video-container {
    flex-grow: 1;
}
#player {
    width: 727px;
    height: 545px;
    display: flex;
    flex-direction: column;
}

.player-buttons {
    flex-grow: 0;
    background: black;
    display: flex;
    flex-direction: row;
    padding-left: 3px;
    padding-bottom: 7px;
}

.circle {
    width: 7px;
    height: 7px;
    background-color: red;
    border-radius: 20px;
    border: 3px solid white;
    margin-bottom: -12px;
    margin-left: -5px;
    margin-right: -6px;
}

.player-button {
    cursor: pointer;
    color: white;
    background-color: transparent;
    border-style: hidden;
    margin-right: 12px;

    font-size: larger;
    width: 23px;
    height: 23px;
}

.button-fullscreen {
    margin-right: 5px;
}

.current-time {
    margin-left: -5px;
}
.duration-time {
    margin-right: 2px;
}

.progressbar {
    width: 100%;
    height: 10px;
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
    background-color: antiquewhite;
}

.slider {
    margin-top: 12px;
    background-color: red;
    height: 5px;
    border-radius: 10px;
}

.player-button:focus {
    background-color: rgba(110, 109, 109, 0.4);
}
