/*===// CSS File Structure //===
  1. Reset & Root CSS
  2. Global styles
  3. Media player styles
  ============================== */

/* Reset */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  box-sizing: border-box;
  list-style: none;
}

/* Global styles */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 5px 0;
  text-align: center;
  font: 1.1rem Arial, sans-serif;
  font-weight: bold;
}

main h1 {
  margin-bottom: 5px;
  text-align: center;
  font: 2.2rem Arial, sans-serif;
  font-weight: bold;
}

/* Media player */
.osp-player {
  margin: 0 auto;
  max-width: 70vw;
  max-height: 90vh;
  margin-bottom: 10px;
}
