@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap");

* {
  font-family: "VCR OSD Mono", sans-serif;
  color: white;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.wallpaper {
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url("./wallpaper.gif");
  background-size: cover;
  background-position: center center;
  height: 100vh;
}

pre {
  color: white;
  overflow: hidden;
  border: none;
  font-size: 10px;
}

.center-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.box-contain {
  display: flex;
  flex-direction: row; /* side-by-side */
  justify-content: center;
  gap: 20px; /* spacing between cards */
  margin-top: 1em;
  flex-wrap: wrap; /* allows wrapping on small screens */
}


.box-brrr {
  width: 220px;
  background-color: transparent;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}


.pfp {
  width: 110px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
}

.text {
  margin-top: 20px;
  text-decoration: none;
  color: rgb(221, 221, 221);
  text-align: center;
  font-size: 12px;
}

.click {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
}

.fade-out {
  animation: fadeOut 1s ease forwards;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
  }

  .intial-container {
    margin-top: 1200px;
  }

  .box-contain {
    flex-direction: column;
    align-items: center;
  }

  .box-brrr {
    max-width: 400px;
  }

  pre {
    font-size: 14px;
    overflow-y: auto;
  }

  .text {
    font-size: 8px;
    margin-bottom: 150px;
  }
}

