@font-face {
  font-family: "manga-temple";
  src: url("./manga-temple/manga-temple.regular.ttf");
}

@font-face {
  font-family: Montserrat;
  src: url(./montserrat/Montserrat-Regular.ttf);
}

.footerbar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: grey;
  color: white;
  text-align: center;
}

#searchBar {
  padding: 5px;
  border: 3px solid black;
}

.mont {
  font-family: 'Montserrat';
  color: black;
  position: relative;
  font-size: 2em;
  padding-bottom: 4px;
  text-shadow: 2px 2px white;
}

img {
  cursor: pointer;
}

.headerbar {
  width: 100%;
  padding: 10px;
  padding-right: 0px;
  padding-left: 0px;
  clear: none;
}

.center-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
 
::placeholder {
  font-family: 'Montserrat';
  color: grey;
}
 
table {
  width: 100%;
}

th, td, a {
  font-family: 'Montserrat';
}
 
label {
  font-family: 'Montserrat';
  font-size: 1em;
}
 
p {
  text-align: left;
  padding: 10px;
  font-family: 'Montserrat';
}
 
h1 {
    line-height: 1em;
}

h4 {
  color: black;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
 
p.definition {
  padding: 0;
}
 
p.result:hover {
  background-color: grey;
  background-clip: border-box;
}
 
h2 {
  font-family: 'Montserrat';    
  text-align: left;
}

tr {
  border: 1px solid black;
}
 
button {
    display: inline-block;
    border-radius: 20px;
    font-weight: bold;
    font-family: 'Montserrat';
    padding: 10px;
    width: 200px;
    border: none;
    background-color: black;
    color: white;
    cursor: pointer;
    cursor: hand;
}
 
button:hover {
    background-color: #3ad342;
    transition: 0.4s;
  }
 
  button.add {
    position: relative;
    border: none;
    padding: 0px;
    border-radius: 60px;
    background-color: #3ad342;
    color: white;
  }
 
  button.add:hover {
    background-color: #29902F;
  }
 
  button.cancel {
    position: relative;
    border: none;
    padding: 0px;
    border-radius: 60px;
    background-color: red;
    color: white;
  }

  button.cancel:hover {
    background-color: #91170a;
  }

  input[type=text]:focus {
    box-shadow: 0 0 8px 0;
}
 
.inputWithIcon input[type=text] {
    padding-left: 40px;
}
 
@media only screen and (min-width: 765px) {  

  .mobile {
    display: none;
  }

  .mobileParagraph {
    display: none;
  }

  .footerMobile {
    display: none;
  }

  .animefont {
    font-size: 40px;
  }

    input {
        font-family: 'Montserrat';
        border: 2px solid black;
        padding: 10px 20px;
        width: 680px;
        height: 42px;
        box-sizing: border-box;
        outline: none;
        text-indent: 3%;
        border-radius: 20px;
        color: black;
    }
    table {
      border-spacing: 15px;
    }
    button.add, button.cancel {
      width: 20%;
    }
    .dropdown-content {
      margin-top: 1px;
      background-color: #ffffff;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      padding: 12px 16px;
      z-index: 1;
      width: 649px;
      overflow-y: auto;
    }
}
 
@media only screen and (max-width: 764px) {

  .desktop {
    display: none;
  }

  .desktopParagraph {
    display: none;
  }

  #contributeFormDesktop {
    display: none;
  }

  .footerDesktop {
    display: none;
  }
    input {
      font-family: 'Montserrat';
      border: 2px solid black;
      padding: 0.7vw 1.7vw;
      width: 90vw;
      height: 42px;
      box-sizing: border-box;
      outline: none;
      text-indent: 3%;
      border-radius: 20px;
      color: black;
    }
    table {
      border-spacing: 5px;
    }
    button.add {
      position: relative;
      border: none;
      padding: 5px;
      border-radius: 60px;
      width: 100px;
      background-color: #3ad342;
      color: white;
    }
    button.cancel {
      position: relative;
      border: none;
      padding: 5px;
      width: 100px;
      border-radius: 60px;
      background-color: red;
      color: white;
    }
    .dropdown-content {
      text-align: center;
      margin-top: 1px;
      background-color: #ffffff;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      padding: 10px 14px;
      z-index: 1;
    }
}
 
html, body {
    -webkit-font-smoothing: antialiased;
}
 
.titlefont {
    font-family: Tahoma, Geneva, sans-serif;
    color: white;
    display: inline;
}
 
.column {
    display: inline-block;
    vertical-align: middle;
}

 
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #eff0f1;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: none;
    border-radius: 20px;
    width: 50%; /* Could be more or less, depending on screen size */
  }
  
  /* The Modal (background) */
  .modal_login {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content_login {
    background-color: #eff0f1;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
  }
 
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
 
/* The IntellISense Dropdown menu */
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
 
  .dropdown-content {
    padding-top: 5px;
    font-family: 'Montserrat';
    background-color: #ffffff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
  }
 
  .dropdown-content-footer {
    padding-top: 5px;
    font-family: 'Montserrat';
    background-color: #ffffff;
    border-radius: 20px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
  }
 
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
 
   /* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}
 
/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}
 
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

