/* This css folder is everything we edited to overwrite bootstrap library css */

.navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    margin-left: 2rem;
    font-size: 3vw;
    white-space: nowrap;
    font-family: pixelFontTitle;
    color:white;
    transition: 0.25s;
  }

  .navbar-brand:hover{
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    margin-left: 2rem;
    font-size: 3.1vw;
    white-space: nowrap;
    font-family: pixelFontTitle;
    color:rgb(141, 240, 241);
  }

  .navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 3vw;
    font-family: pixelFontText;
    color: white;
    transition: 0.25s;
  }

  .nav-link {
    text-align: center;
    font-size: 2vw;
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: white;
    transition: 0.25s;
  }

  .nav-link:hover {
    text-align: center;
    font-size: 2.1vw;
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: pink;
  }

  .display-5{
    border-radius: 10px;
    background-color:rgba(0, 0, 0, 0.80);
    text-align: center;
  }
  .btn {
    background-color:rgba(0, 0, 0, 0.8);
    color: white;
    transition: 0.25s;
  }

  .btn:hover {
    background-color:rgba(0, 0, 0, 0.5);
    color: rgb(246, 109, 132);
    font-size: 2.5vw;
  }

  h2{
    background-color:rgba(0, 0, 0, 0.5);
    font-size: 3vw;
    text-align: center;
  }

  #previous {
    margin-top: 2vw;
  }

  #next {
    margin-top: 2vw;
  }

  button {
    border-radius: 0;
    font-family: pixelFontText;
  }

  body {
    margin: 0;
    font-family: pixelFontText;
    font-size: 2vw;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    background-color: black;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .quiz{
    background-color:rgba(0, 0, 0, 1);
    text-align: center;
  }

  .p-4{
    height: 5px;
  }
  @font-face {
    font-family: pixelFontText;
    src: url(pixelFontText.ttf);
  }

  @font-face {
    font-family: pixelFontTitle;
    src: url(pixelFontTitle.otf);
  }