@font-face {
  font-family: "Poppins Bold";
  src: url("/assets/fonts/Poppins-Bold.ttf");
}

@font-face {
  font-family: "Poppins Regular";
  src: url("/assets/fonts/Poppins-Regular.ttf");
}

@font-face {
  font-family: "Gloock";
  src: url("/assets/fonts/Gloock-Regular.ttf");
}

@media (max-width: 1000px) {
  .container {
    width: 90%;
  }
}

@media (max-height: 800px) {
  .wrapper {
    height: 75%;
  }
}

p {
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #121212;
}

.trailer {
  height: 20px;
  width: 20px;
  position: fixed;
  border-radius: 20px;
  background-color: white;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease;
}

.pointer {
  background-color: rgba(0, 0, 0, 0) !important;
  border: white 1px solid;
}

body:hover > .trailer {
  opacity: 1;
}

#name {
  font-family: "Gloock", sans-serif;
  font-weight: 750;
  font-size: 78px;
  margin-bottom: 25px;
  background-image: linear-gradient(45deg, #4158d0 10%, #c850c0 50%, #ffb116 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 999;
}

#heading {
  font-family: "Poppins Bold", sans-serif;
  font-size: 48px;
  margin-bottom: 25px;
  color: white;
  z-index: 999;
}

.title {
  display: flex;
  justify-content: center;
  align-items: end;
  margin-bottom: 2em;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.container {
  background-color: #282c34;
  border-radius: 25px;
  text-align: center;
  width: 750px;
}

.tab {
  overflow: hidden;
  border: 2px solid #6d697f;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.tab button {
  font-weight: 700;
  font-size: 26px;
  font-family: "Consolas", monospace;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 18px;
  transition: 0.3s;
  color: #f2f2f2;
  background: rgba(255, 255, 255, 0);
  transition: 0.3s ease-in-out;
}

pre {
  margin: 0;
  padding: 0;
}

.tab button.focused,
.tab button:focus,
.tab button:hover,
.tab button.active {
  text-decoration: underline;
}

.tabcontent {
  display: none;
  height: 424px;
  font-size: 22px;
  border: 2px solid #6d697f;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  font-family: Consolas, monospace;
  text-align: left;
  padding: 6px 12px;
  border-top: none;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.console {
  padding: 22px 22px 0 22px;
}

#console,
#code {
  position: relative;
}

#code pre code.hljs {
  transform: translateZ(0);
  overflow: hidden;
  padding: 1em 1em 0 1em;
  background: rgba(255, 255, 255, 0);
}

.button {
  display: inline-flex;
  width: 130px;
  height: 40px;
  border: none;
  outline: none;
  border-radius: 5px;
  overflow: hidden;
  font-family: "Arial", sans-serif;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  position: absolute;
  bottom: 25px;
  left: 12px;
}

.run {
  background-color: rgb(44, 156, 0);
}

.run:hover,
.run:active {
  background-color: rgb(40, 139, 0);
}

.stop {
  background-color: rgb(204, 2, 2);
}

.stop .button-icon {
  width: 28px;
}

.stop:hover,
.stop:active {
  background-color: rgb(187, 7, 7);
}

.button-text,
.button-icon {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  height: 100%;
}

.button-text {
  padding: 0 20px 0 10px;
  width: 35px;
}

.button-icon {
  padding: 0 18px 0 12px;
  width: 34px;
  font-size: 5em;
  background: rgba(0, 0, 0, 0.08);
}

#stop-svg {
  width: 22px;
}

#run-svg {
  width: 32px;
}

.text-headline {
  font-weight: 1000;
  font-size: 24px;
  color: rgb(255, 255, 255);
  font-family: "Consolas", sans-serif;
}

.text {
  font-size: 18px;
  color: rgb(255, 255, 255);
  font-family: "Poppins Regular", sans-serif;
}

.wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
  opacity: 50%;
}
