@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&family=Outfit&display=swap');

html {
  height: 100%;
  width: 100%;
}

body {
  background-color: #000;
  color: #fff;
  font-family: Outfit,sans;
}

#header {
  font-size: 45px;
  text-align: center;
  margin: 20px;
  padding: 40px;
  border: 2px solid white;
  box-shadow: 4px 4px grey;
  border-radius: 16px;
}

#selection {
  border: 2px solid white;
  width: 25vw;
  height: 80vh;
  margin: 20px;
  border-radius: 16px;
  padding: 10px;
}

.selectionobj {
  width: 90%;
  border: 2px solid white;
  margin: auto;
  margin-top: 10px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 8px;
  cursor: pointer;
}

.selectionobjtitle {
  margin-top: 5px;
  font-size: 20px;
}
.selectionobjauthor {
  font-size: 15px;
  margin-bottom: 5px;
}
.selectionobjdificulties {
  font-size: 15px;
}

#content {
  border: 2px solid white;
  width: 70vw;
  height: 80vh;
  margin: 20px;
  border-radius: 16px;
  text-align: center;
  float: right;
  padding: 10px;
}


#container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.easy {
  background-image: url(osd/osueasy.png);
  width: 16px;
  height: 16px;
  display: inline-block;
}
.normal {
  background-image: url(osd/osunormal.png);
  width: 16px;
  height: 16px;
  display: inline-block;
}
.hard {
  background-image: url(osd/osuhard.png);
  width: 16px;
  height: 16px;
  display: inline-block;
}
.insane {
  background-image: url(osd/osuinsane.png);
  width: 16px;
  height: 16px;
  display: inline-block;
}
.expert {
  background-image: url(osd/osuexpert.png);
  width: 16px;
  height: 16px;
  display: inline-block;
}

#contentheader {
  font-size: 28px;
  margin-top: 20px;
}
#contentauthor {
  font-size: 20px;
}
#contentdifficulties {
  margin: 10px;
}
#contentfile {
  color: #42d9ff;
  text-decoration: underline #42d9ff;
  cursor: pointer;
}
#contentvideovoltage,#contentvideodice,#emptyvideo {
  margin: 20px;
}

.selected {
  border: 2px solid #00bfff;
}

.hidden {
  display: none;
}

.npe {
  pointer-events:none;
}
