* {
    margin: 0; padding: 0;
  }

html, body{
    font-weight: 600;
    font-family: 'Reenie Beanie', cursive;
    color: rgb(0, 0, 0);
    font-size: large;
}

input[type="text"]{
    border: 2px solid rgba(255,255,255,0.20);
      border-radius: 61px;
      font-size: 12px;
      color: black;
      letter-spacing: 1px;
      text-decoration: none;
      text-transform: uppercase;
      padding: 10px 25px;
      display: inline-block;
      margin-right: 15px;
      opacity: 50%;
}

::placeholder{
    color: purple;
    font-weight: bold;
}

#container {
    overflow: hidden;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
  }

#background_video {
    position: absolute;

    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }

  #video_cover {
    position: absolute;

    width: 100%; height: 100%;

    background: url('images/video_cover.jpeg') no-repeat;
    background-size: cover;
    background-position: center;
  }

  #video_controls {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
  }

  #play img {
    width: 100px;
  }
  #pause img {
    width: 90px;
  }
  #pause {
    display: none;
  }

  @media (min-width: 768px) {
    #video_controls {
      display: flex;
    }
  }

  #overlay {
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    background: rgba(186, 208, 255, 0);
  }

  #all-input-items {
    z-index: 2;
    position: relative;
    display: inline-block;
    display: flex;
    justify-content: center;

    top: 50%;
    transform: translateY(-50%);
  }

span{
    color: red;
}

#title-container{
    display: inline;
    float: left;
    padding: 5px;
    font-weight: bold;
}

#due-date-container{
    display: inline;
    float: left;
    padding: 5px;
    font-weight: bold;
}

#checkbox-container{
    display: inline;
    float: left;
    padding: 5px;
    font-weight: bold;
}

label{
    font-size: xx-large;
}

h1{
    font-size: 350%;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 15px;
}

h2{
    font-size: 200%;
    margin-top: 20px;
    margin-bottom: 10px;
    position: relative;
}

h3{
  margin: 0px;
  position: relative;
}

p{
    margin-top: 0px;
    font-size: 25px;
    position: relative;
}

h1, h2{
    text-decoration: underline;
    text-align: center;
}

.major-priority{
    color: red;
}

.medium-priority{
    color: rgb(228, 125, 8);
}

.minor-priority{
    color: green;
}

.completed{
    opacity: 90%;
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.445)
}

#all-items{
    text-align: center;
    font-size: x-large;
    display: inline;
    float: center;
    width: 50%;
    padding: 10px;
    border:1px solid #ccc;
    overflow:auto;
}

#add{
    border: 2px solid rgba(255,255,255,0.20);
    border-radius: 61px;
    font-size: 12px;
    color: black;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 25px;
    display: inline-block;
    margin-right: 15px;
    opacity: 50%;


}

