@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10; /* Behind everything */
  opacity: 0.4;
}

body {
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-size: 10px;
  background-color: black;
  color: greenyellow;
}

body {
  background: #000;
}
canvas {
  display: block;
}

.main-container {
  width: 80vw;
  margin: 0 auto;
  /* border: 1px solid black; */
  position: relative;
  z-index: 10;
}

.hero {
  min-height: 100vh;
  /* border: 1px solid white; */
  max-height: 100vh;
}

nav li {
  font-family: "VT323";
  font-size: 150px;
  font-weight: 400;
  text-decoration: none;
  list-style: none;
  /* padding: 25px; */
  margin-top: 5%;
  text-align: center;
}

.profile-pic {
  color: red;
  margin: 0 auto;
  width: max-content;
  margin-top: 5%;
  font-size: 15px;
}

.about {
  height: 100vh;
  margin: 0 auto;
  border: 1px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-text {
  font-size: 1.5em;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.about ul {
  font-size: 12px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.about ul li {
  background-color: rgb(11, 11, 11);
  color: red;
  height: 50px;
  width: calc(50% - 10px);
  border: 1px solid white;
  border-radius: 10px;
}

.about ul li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center; /* vertical center */
  text-decoration: none;
  color: red;
}

.about ul li:hover {
  background-color: rgb(22, 22, 22);
}

.about ul li:active {
  background-color: rgb(33, 33, 33);
}

.browse-website {
  height: 100vh;
  font-size: 14px;
  padding-top: 50px;
}

.browse-website-links a {
  text-decoration: none;
  color: red;
}

.hacking-tools-info {
  height: 100vh;
  font-size: 14px;
}

.hacking-tools-info .heading {
  margin-top: 10px;
  padding-top: 25px;
}

.hacking-tools-info .heading:first-child {
  margin-top: 0;
}
