.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 50px);
}

#currentVideo {
    max-width: 1000px;
    width: 100%;
    border-radius: 5px;
}

#Videocontainer,
#audioContainer {
    display: none;

}

#Videocontainer.active,
#audioContainer.active {
    display: table;
    text-align: center;
    width: 100%;
    border: 0px;
}



.downloadContainer.active {
    display: block;
    border: orange;
    border-style: solid;
    border-width: .25rem;
    padding: 1rem;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
}

.downloadContainer {
    display: none;
}

.downloadContainer.active:hover {
    background-color: rgb(221, 125, 125);
}



a:link {
    text-decoration: none;
}

.banner {
    height: 50px;
    background: inherit;
}

header {
    padding: 10px;
}

body {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 20%, rgba(0, 75, 135, 1) 60%, rgba(0, 75, 135, 1) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}