body {
	margin:0;
    background-color: #1c0e1c;
    color: #fff;
}

* {
  box-sizing: border-box;
  transition: ease 150ms;
}

::-webkit-scrollbar {
  width: .5vw;
}

::-webkit-scrollbar-thumb {
  background: #5f1a60; 
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: #1b1b1b; 
}

::-webkit-scrollbar-thumb:hover {
  background: #7e2480; 
}

.logo {
    background-image: url("assets/logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 218px;
    height: 50px;
}

.logo-center {
  background-color: #fff;
  padding: 18px 0 20px 0;
}



a {
	cursor: pointer;
}

#myInput {
  background-image: url('assets/search.webp');
  background-position: 5px 6px;
  background-repeat: no-repeat;
  background-size: 30px;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 47px;
  border: solid #1c0e1c;
  border-width: 1px 0px 0px 0px;
  margin-bottom: 12px;
  position: sticky;
  top: 0;
  z-index: 3;
}

#myUL {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#myUL li a {
  font-family: inherit;
  border: 1px solid #402240b5;
  margin-top: -1px; /* Prevent double borders */
  background-color: #301329;
  padding: 15px 15px 15px 15px;
  text-decoration: none;
  font-size: 20px;
  color: #bd7aab;
  text-align: left;
  font-weight: bold;
  display: block
}

#myUL li a:hover:not(.header) {
  background-color: #34182d;
}

button.button {
  border: 0;
  padding: 0 0 0 0;
  width: 100%;
}


.hero {
	display: none;
}
@media only screen and (max-width: 875px) {
.hero {
	display: initial;
    width: auto;
    height: 30px;
    position: absolute;
    right: 5%;
}
}

.mini {
	font-size: 13px;
  font-weight: normal;
	padding: 6px 0 0 8px;
  color: #cb8ea7;
}


/*  MODAL PREVIEW  */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 25px; /* Location of the box */
  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 */
  z-index: 5;
}

/* Modal Content/Box */
.modal-content {
    background-color: #220e2a;
    margin: 10vh auto; /* 15% from the top and centered */
    padding: 0px 15px 12px 15px;
    border: 1px solid #451c56;
    width: 90%; /* Could be more or less, depending on screen size */
}
@media (min-width: 1366px) {
  .modal-content {
    margin: 10vh auto; /* 15% from the top and centered */
    width: 30%; /* Could be more or less, depending on screen size */
	}
}

.modal-content img {
  width: 100%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  font-size: 32px;
  font-weight: bold;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0px 5px 0px;
}

.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}