.home {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 10% 0% 10%;
  overflow: hidden;
  position: relative;
}
.home .print-statement-container .print-statement {
  display: inline-block;
}
.home .print-statement-container .cursor {
  display: inline-block;
  background-color: rgb(98, 151, 231);
  width: 3px;
  font-size: 28px;
  animation: blink 1s infinite;
}
.home .terminal-display {
  width: 100%;
  height: 80%;
  display: grid;
  grid-template-rows: 70px 1fr;
  box-shadow: 0px 0px 20px 1px #090a0b;
  background-color: rgba(9, 10, 11, 0.6);
}
.home .terminal-display .info-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top: 1px solid #595959;
  border-bottom: 1px solid #595959;
}
.home .terminal-display .info-bar .left-side,
.home .terminal-display .info-bar .right-side {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.home .terminal-display .info-bar .info-bar-item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0px 15px;
}
.home .terminal-display .info-bar .info-bar-item:hover:not(.run-title-container) {
  background-color: #595959;
}
.home .terminal-display .info-bar .left-side {
  justify-content: flex-start;
  width: 30%;
}
.home .terminal-display .info-bar .left-side .run-title-container {
  cursor: default;
}
.home .terminal-display .info-bar .left-side .run-title-container .text {
  color: #e8e6e6;
  opacity: 0.8;
}
.home .terminal-display .info-bar .left-side .running-file-container {
  display: flex;
  flex-direction: row;
  gap: 7px;
  border-bottom: 4px solid rgb(98, 151, 231);
  cursor: default;
}
.home .terminal-display .info-bar .left-side .running-file-container img {
  width: 20px;
}
.home .terminal-display .info-bar .left-side .loading-circle-container img {
  height: 30px;
}
.home .terminal-display .info-bar .right-side {
  justify-content: flex-end;
  width: 70%;
}
.home .terminal-display .info-bar .right-side .section-button {
  transition: opacity 3s;
}
.home .terminal-display .info-bar .right-side .section-button.hidden {
  pointer-events: none;
}
.home .terminal-display .info-bar .right-side .options-button-container {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home .terminal-display .info-bar .right-side .options-button-container img {
  height: 30px;
}
.home .terminal-display .info-bar .right-side .options-button-container .dropdown {
  position: absolute;
  width: 120px;
  height: -moz-fit-content;
  height: fit-content;
  gap: 5px;
  padding: 10px 5px;
  background-color: rgba(89, 89, 89, 0.6);
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.home .terminal-display .info-bar .right-side .options-button-container .dropdown .dropdown-item {
  width: 100%;
  border-radius: 5px;
  padding: 5px 10px;
}
.home .terminal-display .info-bar .right-side .options-button-container .dropdown .dropdown-item:hover {
  background-color: #595959;
}
.home .terminal-display .info-bar .right-side .close-button-container {
  cursor: pointer;
}
.home .terminal-display .info-bar .right-side .close-button-container img {
  height: 25px;
}
.home .terminal-display .terminal-body {
  padding-top: 50px;
}
.home .terminal-display .terminal-body .file-path,
.home .terminal-display .terminal-body .process-exit-statement {
  color: #ffffff;
  padding-left: 15px;
}
.home .terminal-display .terminal-body .welcome-text-container {
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: default;
}
.home .terminal-display .terminal-body .welcome-text-container h2 {
  font-size: 80px;
  font-family: "fantaisieartistique";
}
.home .terminal-display .terminal-body .welcome-text-container h2 .welcome-text-im {
  display: inline-block;
  font-family: "Inter Bold";
  text-shadow: -3px 0 #ffffff, 0 3px #ffffff, 3px 0 #ffffff, 0 -3px #ffffff;
}
.home .terminal-display .terminal-body .welcome-text-container h1 {
  font-size: 200px;
}
.home .easter-egg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home .easter-egg p {
  font-size: 25px;
}
.home .blob {
  transition: 5s;
}
.home .blob-1 {
  top: 50px;
  left: -200px;
}
.home .blob-2 {
  bottom: 0px;
  right: -200px;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes welcome-script-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@font-face {
  font-family: "fantaisieartistique";
  src: url(/fonts/home_section_fonts/fantaisieartistique/FantaisieArtistique.ttf);
}
@font-face {
  font-family: "Glitch Goblin";
  src: url(/fonts/home_section_fonts/glitch_goblin/GlitchGoblin-2O87v.ttf);
}
@font-face {
  font-family: "Blue Screen";
  src: url(/fonts/home_section_fonts/blue_screen/BlueScreenPersonalUseRegular-0W1M9.ttf);
}
@media (max-width: 1199px) {
  .home .terminal-display {
    overflow: hidden;
  }
  .home .terminal-display .info-bar .left-side {
    width: -moz-fit-content;
    width: fit-content;
  }
  .home .terminal-display .info-bar .right-side .section-button:not(.about-button) {
    display: none;
  }
  .home .terminal-display .terminal-body .file-path {
    display: none;
  }
  .home .terminal-display .terminal-body .welcome-text-container h2 {
    font-size: 70px;
  }
  .home .terminal-display .terminal-body .welcome-text-container h1 {
    font-size: 150px;
  }
  .home .terminal-display .terminal-body .process-exit-statement {
    font-size: 16px;
  }
  .home .blob {
    width: 600px;
  }
  .home .blob-1 {
    left: -200px;
  }
  .home .blob-2 {
    right: -200px;
  }
}
@media (max-width: 799px) {
  .home {
    padding: 30px 5% 0% 5%;
  }
  .home .print-statement-container .print-statement {
    font-size: 30px;
  }
  .home .print-statement-container .cursor {
    display: none;
  }
  .home .terminal-display .info-bar {
    justify-content: space-between;
  }
  .home .terminal-display .info-bar .left-side {
    width: -moz-fit-content;
    width: fit-content;
  }
  .home .terminal-display .info-bar .left-side .running-file-container {
    display: none;
  }
  .home .terminal-display .info-bar .right-side {
    width: auto;
  }
  .home .terminal-display .terminal-body .welcome-text-container h2 {
    font-size: 50px;
  }
  .home .terminal-display .terminal-body .welcome-text-container h1 {
    font-size: 100px;
  }
  .home .blob {
    width: 500px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .blob {
    width: 700px;
  }
}