
body {
  margin: 0;
  padding: 0;
}



.flex-row {
  display: flex;
  flex-direction: row;
}


/* Header */

.header {
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: #282828;
  z-index: 100;
}
.header .flex-row {
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px 0px 10px;
}

.logo img{
  width: 100px;
}

.searchbar {
  width: 30%;
  min-width: 150px;
}

.uploadbutton:hover {
  cursor: pointer;
}







/* Header ende */



/* Upload section */
.uploadsection {
  position: fixed;
  top: 30%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.uploadcontainer {
  width: 50%;
  min-width: 250px;
  background-color: #282828;
  padding: 20px;
  color: white;
  border-radius: 15px;
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.2);
  box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.2);
}

.uploadform {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.hide.uploadform img{
  width: 25px;
}

.drag-and-drop {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 5%;
  margin: 10px;
  border: 5px solid gray;
  border-style: dotted;
}



/* Uplaod section ende */












.main-content {
  padding: 25px;
}





.videos {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr ;
  grid-gap: 1rem;
}
.video {
  width: 100%;
  height: 100%;
  background-color: #282828;
  color: white;
  border-radius: 10px;
}
.video-title {
  padding: 10px;
}
video {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 5px 4px 28px -2px #000000;
  box-shadow: 5px 4px 28px -2px #000000;
}








@media(max-width: 1000px){
  .videos {
    grid-template-columns: 1fr;
  }
}










/* Inputs */
.videosearch {
  width: 100%;
  height: 30px;
  border-radius: 50px;
  padding: 0 0 0 10px;
  border: 1px solid #d3d3d3;
}
.videosearch:focus {
 outline: none;
 border: 2px solid #c4619a;
}





.hide {
  display: flex;
  justify-content: end;
}
.hide:hover {
  cursor: pointer;
}




/* Inputs ende */
