
/* Montserrat Font */
.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

/* Disables Selecting and Dragging */
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    user-drag: none;
}

.main-menu {
  position: fixed;
  top: 45vh;
  left: 0;
  width: 60px;
  height: 35vh;
  background-color: rgb(28, 27, 41);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0px 0px 20px rgb(28, 27, 41);
  transition: .3s ease;
  color: rgb(237, 13, 222);
}

.main-menu:hover {
  width: 270px;
}

.main-menu .menu-item {
  padding: 10px;
}

.main-menu .main-item:hover {
  background-color: #d6ddd6;
  cursor: pointer;
  color: black;
}

.main-menu .menu-item .fa {
  font-size: 25px;
  width: 40px;
  padding: 10px;
}

li {
  list-style-type: none;
}

a {
  color: white;
  text-decoration: none;
}

.headline {
  text-align: center;
  padding-top: 5px;
}

.body {
  height: 50vh;
  background-color: rgb(28, 27, 41);
}

.main-field {
  padding-left: 90px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-family: 'Lato', sans-serif;
  font-family: 'Roboto', sans-serif;
}

/* CSS Animations */

/* Hover Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#banner {
  width: 100%;
  height: 45vh;
}

