
.dark-modejs {
  background-image:url(wallpaper-dark.png);
  color: #e0e0e0;
}
body {
  background-image: url("wallpaper.png");
  background-size: cover;
  background-attachment: fixed;
  color: black;
  font-family: Sans-serif;
  margin: 0;
  z-index: 1;
  padding: 0;
  font-size: 20px;
  text-align: center;
  line-height: 1.6;
}
.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background-color: #098fe2;
  float : left;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent;
}
img {
  float:right;
  margin-left: 15px;
  border-radius: 10px;
}
img:hover:not(.logo):not(.night-mode img) {
  transform: scale(1.05);
  float:center;
  transition: transform 0.3s;
  width: auto;
  height: auto;
}


.img-left {
  float:left;
  border-radius: 10px;
}
ul {
  list-style-position: inside;
  padding: 0;
  text-align: center;
}

pre {
  display: inline-block;
  text-align: left;
  background-color: rgba(244, 244, 244, 0.9);
  padding: 15px;
  border-radius: 5px;
  font-family: monospace;
  border: 1px solid #ccc;
  color: black;
}


.title {
  background-color: #098fe2;
  background-image: linear-gradient(135deg, #098fe2 50%, #F7941D 50%);
  color: black;
  border-radius: 15px;
  padding: 16px;
  margin-bottom: 20px;
  margin-top: 100px;

}


.link {
  display: inline-block;
  margin-bottom: 40px;
}

a {
  color: #098fe2;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}


h1{
font-size: 50px;

}
h2 {
font-size: 30px;
}
/* Navbar container */
.navbar {
  overflow: visible; /* allow dropdowns to extend */
  border-radius: 15px;
  background-color: #098fe2;
  background-image: linear-gradient(135deg, #098fe2 50%, #F7941D 50%);
  font-family: Sans-serif;
  position: fixed;
  top:25px;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 50px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.navbar-container{
  background: transparent;
  margin: 0;
}
.night-mode {
  background-color: #f9f9f9;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.night-mode img {
  width: 30px;
  height: 30px;;
  
}
/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  font-weight: normal;
  border-radius: 10px;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Dropdown container */
.dropdown {
  float: left;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: black;
  font-weight: normal;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  cursor: pointer;
}

/* Hover effects */
.navbar a:hover,
.dropdown:hover .dropbtn {
  background-color: #40bbf5;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  border-radius: 15px;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 2000; /* VERY HIGH so itâ€™s above everything */
}

/* Dropdown links */
.dropdown-content a {
  float: none;
  border-radius: 15px;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* SEARCH */
.search-wrapper {
  position: relative;
  float: left;
  margin-right: 16px;
}

.navbar input[type=search] {
  padding: 6px;
  border: none;
  margin-top: 8px;
  font-size: 17px;
  border-radius: 6px;
  background-color: white;
  color: black;
}

/* Search results dropdown */
#search-results {
  position: absolute;
  top: 46px;
  right: 0;
  border-radius: 15px;
  width: 260px;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  z-index: 3000; /* make sure itâ€™s above all */
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
} 

/* Make search result links fill the dropdown and highlight fully on hover */
#search-results a {
  display: block;
  float: none; /* override .navbar a { float:left } so links fill full width */
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  color: black;
  text-decoration: none;
  text-align: left;
}

#search-results a:hover {
  background-color: #ddd;
}

/* Body search bar */
.body-search-wrapper {
  position: relative;
  margin: 20px auto;
  width: 300px;
}

#body-search {
  padding: 10px;
  border: none;
  font-size: 17px;
  border-radius: 6px;
  background-color: white;
  color: black;
  width: 100%;
  box-sizing: border-box;
}

#body-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-radius: 15px;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  z-index: 1000;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
}

#body-search-results a {
  display: block;
  padding: 12px 16px;
  color: black;
  font-weight: normal;
  text-decoration: none;
  text-align: left;
}

#body-search-results a:hover {
  background-color: #ddd;
}
#lucky {
 height: 42px;
 position: relative;
 border:none;
 border-radius: 6px;
 width: 75px;
 color:#8e8e8e;
left:190px;
bottom:62px;
 background-color: white;
} 
#lucky:hover {
  background-color: #ddd;
}
div.banner {
  position: absolute;
  left: 100%;
  width: 100px;
  height: 500px;
}