@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans&display=swap');

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-family: 'IBM Plex Sans', sans-serif;    
  font-weight: lighter;
  font-size: 16px;
}

header, h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
}

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

canvas {
  /* will overlay the video and therefore its position will be handled in an absolute way */
  position: absolute;
}


#apps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

#apps button {
  color: white;
  padding: 15px 32px;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: white;
  color: black;
  border: 2px solid #555555;
}


#infobar button {
    display: block;
    cursor: pointer;
    color: white;
    background-color: black;
    font-size: 1em;
    border: none;
    width: 20em;
    height: 3em;
    text-align: center;
    margin: 2em auto;
}

#infobar select {
  padding: 15px 32px;
  font-size: 1em;
  margin: 4px 2px;
  width: 20em;
  height: 3em;
  cursor: pointer;
  background-color: white;
  color: black;
  border: 2px solid #555555;	
}

#infobar input {
    display: block;
    width: 20em;
    height: 2em;
    margin: 1em 0;
    font-size: 1em;
}


#infobar label {
    display: block;
    width: 20em;
    font-weight: bold;
}

/* Eliminating the bullets from the unordered list */
ul {
    display: flex;
    list-style-type: none;
    justify-content: center;
    align-items: center;
    padding: 0;
}

li {
    padding: 0 15px;
}

.show {
    visibility: visible
}

.hide {
    visibility: hidden
}