*{
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
    max-width: 500px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.videoContainer {
    margin: 0 auto;
    width: 500px;
    height: 375px;
    border: 10px #333 solid;
}

video {
    width: 100%;
    height: 100%;
    background-color: darkgray;
    object-fit: cover;
}

.videoSettings{
    margin: 0 auto;
}

.videoSettings label {
    display: block;
    margin-top: 1rem;
}

.videoSettings select {
    width: 100%;
}

.saveButtons{
    margin-top: 2rem;
    height: 50px;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.saveButtons button{
    margin: 0 auto;
    flex: 1;
    font-weight: 700;
}

hr {
    margin: 20px 0;
}