@import url("https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
}

body {
  position: relative;
  background-color: rgb(0, 0, 0);
  font-family: "Fuzzy Bubbles", cursive;
  min-width: 450px;
}

h1 {
  text-align: center;
  transform: translateY(100px);
  color: #b6342e;
}
h1 a {
  color: #b6342e;
  text-decoration: underline;
}

.container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}

.bulb_outer {
  min-height: 500px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bulb_outer #topglass {
  position: relative;
  height: 220px;
  width: 200px;
  border-radius: 50% 50% 25% 25%;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  border-top: 2px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  border-left: 2px solid #cccccc;
  border-right: 2px solid #cccccc;
}
.bulb_outer #topglass .filament {
  display: block;
  height: 3px;
  width: 100px;
  background-color: rgb(255, 251, 230);
  box-shadow: 0px 0px 0px 100px solid #000;
}
.bulb_outer #topglass .leadwires {
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: transparent;
  width: 100px;
}
.bulb_outer #topglass .wireleft {
  width: 2px;
  height: 100px;
  background-color: #777;
  transform: rotate(-10deg) translateX(-30px) translateY(-7px);
}
.bulb_outer #topglass .wireright {
  width: 2px;
  height: 100px;
  background-color: #777;
  transform: rotate(10deg) translateX(30px) translateY(-7px);
}
.bulb_outer .trapezoid {
  position: relative;
  height: 50px;
  width: 100px;
  background-color: transparent;
}
.bulb_outer .trapezoid:before {
  content: "";
  height: 100%;
  left: -4%;
  position: absolute;
  border-style: solid;
  border-top: 2px solid #676767;
  border-left: 2px solid #676767;
  border-right: 2px solid transparent;
  transform: skewX(20deg);
}
.bulb_outer .trapezoid:after {
  content: "";
  height: 100%;
  right: -4%;
  position: absolute;
  border-style: solid;
  border-top: 2px solid #676767;
  border-left: 2px solid transparent;
  border-right: 2px solid #676767;
  transform: skewX(-20deg);
}
.bulb_outer .lowerbody {
  height: 80px;
  width: 80px;
  background-color: rgb(6, 6, 58);
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  border-top: 1px solid #000;
  border-radius: 0% 0% 50% 50%;
}

button {
  display: block;
  background-color: #ffffff;
  z-index: 10;
  font-size: 20px;
  padding: 10px 30px;
  cursor: pointer;
  border: none;
  color: rgb(129, 129, 129);
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #fffcd0;
}

.glow {
  background-color: #fffcd0;
  box-shadow: 0px 0px 290px 0px #fffcd0;
  border: none;
}/*# sourceMappingURL=style.css.map */