* {
  color: white;
}

body {
  margin: 0;
  padding: 0%;
  background-color: #333;
}

button {
  color: white;
  background-color: #000;
  padding: 1rem 1rem;
  border-radius: 15px;
  border: 2px solid white
}

button:hover {
  background-color: #1a1a1a;
}

#heroshot {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0,0,0,0) 100%), url('https://pbs.twimg.com/media/FzQ9JuMX0AwpZod.jpg');
  background-size: cover;
  background-position: center;
  padding-right: 0;
}

#hscontent {
  padding:10% 10%; 
}

#navbar {
  padding:0.8vw 0.8vw;
  display: flex;
  flex-direction: row;
  gap:5px;
  background-color: #cecece1e;
  justify-content: flex-start;
  align-items: center;
}

#navbar a button {
  padding: 5px 5px;
  border-radius: 5px;
}

#navbarlogo {
  object-fit: contain;
  height:34px;
  margin-left: auto;
}

#welcome-title {
  font-size: 4rem;
  margin: 0;
  text-align: left;
  color: white;
}

#qcontain {
  background-color: #333;
  padding-right: 0;
  -webkit-transition: background-image 0.2s ease-in-out;
  transition: background-image 0.2s ease-in-out;
}

.question {
  border: 2px solid white;
  padding: 0px 10px;
  margin-left:6px;
  color:white;
  display: block;
}

#features {
  height: 100vh;
  background-color: #333;
  padding-right: 0;
  -webkit-transition: background-image 0.2s ease-in-out;
  transition: background-image 0.2s ease-in-out;
}

#fcontent {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100vh;
  width: 95%;
  column-gap: 10%;
}

#fcontent * {
  background-color: #333;
  padding:5px 5px;
}

li {
  border: 2px solid white;
  padding: 4px 4px;
  margin-bottom: 5px;
}

#playerfooter {
  display: flex;
  flex-direction: column;
  justify-content: left;
  background-color: #000;
  padding-left: 2vh;
  padding-right: 0;
  position : absolute;
  bottom : 0;
  width:calc(100% - 2vh);
}

#playerfooter p {
  font-size: 16px;
}

#footer {
  display: flex;
  flex-direction: column;
  justify-content: left;
  background-color: #000;
  padding-left: 2vh;
  padding-right: 0;
}

#player {
  height:10px;
  display: block;
}

#playerwindow {
  background-color: #333;
  height: 100vh;
}

#controlfloat {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom:70px;
}

#controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap:4px;
}

#progbar {
  display: flex;
  justify-content: center;
  align-items: center;
}

#progbar progress {
  width: calc(218px * 1.5);
}

#controls button {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-color: #000000;
}

#controls button:hover {
  background-color: #1a1a1a;
}

#controls button:active {
  background-color: #333;
}

#play {
  background-image: url(./player/play_icon.svg);
  background-position: 16px;
}

#skip {
  background-image: url(./player/skip_icon.svg);
  background-position: 12px;
}

#rewind {
  background-image: url(./player/rewind_icon.svg);
  background-position: 12px;
}