body {
  background-color: #0F1020;
  font-family: sans-serif;
}

#video-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#video-grid video {
  border: 2px solid #7353BA;
  width: 640px;
  height: 360px;
  background-color: black;
  outline: none;
  margin: 0px 20px 20px 20px;
}

#my-video-grid video {
  border: 1px solid #7353BA;
  width: 320px;
  height: 180px;
  background-color: black;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transition: all .2s;
  outline: none;
  cursor: pointer;
}

#my-video-grid video:hover {
  width: 384px;
  height: 216px;
}

#setup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  border: 2px solid #7353BA;
  width: 450px;
  height: 300px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #33365f;
  padding: 10px;
}

#setup-title{
  height: 57px;
  text-align: center;
}

#setup-title h1{
  margin: 0px 0px 0px 0px;
}

#setup-configs{
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  margin: 10px 0px 0px 0px;
  align-items: center;
  justify-content: space-between;
}

#setup-configs-radio{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#setup-configs-button button{
  color: white;
  font-size: 16px;
  border-radius: 20px;
  background-color: #7353BA;
  border: 1px solid #0F1020;
  padding: 7px;
  outline: none;
  cursor: pointer;
}

.buttons {
  position: absolute;
  display: flex;
  gap: 5px;
  bottom: 15px;
}

button {

  border-radius: 20px;
  background-color: #7353BA;
  border: 0;
  padding: 7px;
  outline: none;
  cursor: pointer;

}