::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

.hidden {
  display: none !important;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4588235294);
  border-radius: 5px;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  color: white;
}

body {
  display: grid;
  grid-template-columns: 215px auto;
  background-color: #2E2E2E;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.enlarge:hover {
  transform: scale(1.1, 1.1) !important;
  cursor: pointer;
}

.underliner:hover {
  text-decoration: underline !important;
}

#searchButtonHolder {
  display: grid;
  padding-top: 10px;
  grid-column: 2;
  grid-row: 1;
  grid-template-rows: 60px;
  grid-template-columns: 50vw 60px;
  position: relative;
  transition: transform 1.4s;
}
#searchButtonHolder #searchInput {
  width: 94%;
  height: 95%;
  padding-right: 6%;
  border: none;
  border-radius: 10px;
  font: 22px "Segoe UI", "Roboto";
  padding-left: 10px;
}
#searchButtonHolder .searchButton {
  position: relative;
  float: right;
  top: -50px;
  width: 40px;
  transition: transform 0.1s;
}
#searchButtonHolder #searchInputLabel {
  display: none;
}

#hamburger {
  justify-self: flex-end;
  grid-row: 1;
  grid-column: main-end;
  width: 50px;
  margin: 25px 2vw 0 20px;
  transition: transform 0.1s;
}

#websiteName {
  justify-self: flex-start;
  grid-row: 1;
  z-index: 2;
  margin: 5px 0 0 23px;
  width: 150px;
  cursor: pointer;
  color: #FFFFFF;
}

.hamburgerMenu {
  position: fixed;
  right: -300px;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 300px;
  overflow: hidden;
  background-color: rgba(219, 219, 219, 0.8705882353);
  transition: 0.5s;
}
.hamburgerMenu #closeMenu {
  position: absolute;
  right: 0px;
  width: 40px;
  margin: 40px 40px 0 0;
  transition: transform 0.1s;
}
.hamburgerMenu ul {
  margin: 100px 20px;
  text-align: right;
  list-style: none;
  font: normal normal 300 35px/53px "Segoe UI", "Roboto";
}
.hamburgerMenu ul a {
  text-decoration: none;
  color: #464646;
}

.blackout {
  display: grid;
  position: fixed;
  left: 0;
  bottom: 0;
  align-items: center;
  justify-items: center;
  overflow-y: hidden;
  overflow-x: scroll;
  width: 100%;
  height: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8980392157);
  transition: 0.8s;
}
.blackout h1 {
  text-align: center;
  font: bold normal 60px "Segoe UI", "Roboto";
  color: white;
}

@media screen and (max-width: 700px) {
  .hamburgerMenu {
    width: 100%;
    right: -100%;
  }
  .hamburgerMenu ul {
    font: normal normal 300 45px/73px "Segoe UI", "Roboto";
  }

  #websiteName {
    display: none;
  }

  #searchButtonHolder {
    grid-column: 1;
    grid-template-columns: 70vw 60px;
  }
}/*# sourceMappingURL=core.css.map */