

html, body {
  margin: 0;
  padding: 0;
  display: block;
  font-family: my-mersad;
  background-color: black;

  /* This centers our sketch horizontally. */
  justify-content: center;

  /* This centers our sketch vertically. */
  align-items: center;
  
}

/* button:after {
  content: "";
  background: #90EE90;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px!important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s
}

button:active:after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s
} */

button{
  cursor: pointer;
  border: none;
  background-color: #292828;
  width:50px;
  height: 50px;
  /* text-decoration: none; */
  transition-duration: 0.06s;
  border-radius: 2px;
  box-shadow: 3px 3px 2px #414141;

}

.button:hover{
  background-color: #353535;
}

/* .button:active {
  background-color: #2b2b2b;
  box-shadow: 0px 0px #666;
  transform: translate(3px,3px);
} */

.container{
  position: absolute;
  margin-left: 8vw; 
  margin-right: auto;
  left: -15;
  right: 0;
  text-align: center;
  padding:12;
  width:230;
  margin-top: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search{

  width:230;
  height: 40px;
  border-style: none;
  outline:none;
  color:antiquewhite;
  background-color: #292828;
  text-align: center;


}


#button1{
  padding:12;
  background: url("search.png");
}

canvas {
  display: block;
  margin: 0;


}
@font-face {
  font-family: DIN;
  src: url(fonts/DIN2014-Bold.ttf);
  font-family: my-mersad;
  src: url(fonts/Mersad-Bold.ttf);
}

header{
  color: white;
  background: rgba(169, 58, 58, 0);
  text-align: center;
  font-size: 80px;
}

ul{
  font-family: Arial, Helvetica, sans-serif;
  /* list-style-type: none; */
  margin: 0;
  font-size: 16px;
  color: rgb(0, 0, 0);
  /* text-align: center; */
  background: rgb(15, 8, 42);
  /* width: 100%; */

}
li{
  display: inline-block;
  margin: 30px;
  color: rgb(255, 255, 255);

  /* background: black; */
  /* padding:10px; */
  /* text-align: center; */
}

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

a:hover{
text-decoration: underline;
}


@media (max-width: 500px) {

  .container{
    margin-left: auto;

  }
  


}


/* The switch - the box around the slider */
.switch {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-left:3vw;
  margin-right: auto;
  margin-top: 9.2vh;

  
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  border-radius: 8px;
  background-color: rgb(78, 78, 78);
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #7b7b7b;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

