* {
  box-sizing: border-box;
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.centered-hor {
  position: fixed;
  left: 50%;
  transform: translateX(-50%)
}

:root {
  scroll-behavior: smooth;
}

html {
  cursor: url(images/arrow-pointer.svg), default;
  user-select: none;
}

body {
  margin: 0;
  font-family: Consolas;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #464646;
  background-color: #464646;
  overflow-x: hidden;
}

.v-header {
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;

  margin: 0;
  padding: 0;
}

.container {
  max-width: 960px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
  text-align: center;
}

/* BACKGROUND VIDEO */

#vid {
  filter: sepia(0.17) saturate(1.2);
  z-index: 10;
}

.fullscreen-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


.fullscreen-video-wrap video {
  min-height: 100%;
  min-width: 100%;
}

/* START SCREEN */

.halftone {
  --dotSize: 0.4rem;
  --stop1: 0%;
  --stop2: 100%;
}

.halftone::after {
  /* Cover our element */
  content: '';
  position: absolute;
  inset: 0;

  /* Dotted background */
  background-image: radial-gradient(
    circle at center,
    rgb(20, 20, 20) var(--dotSize),
    transparent 0
  );
  background-size: 1.7rem 1.7rem;
  background-position: 0 0, 0.65rem 0.65rem;
}
.halftone::after {
  mask-image: linear-gradient(rgb(36, 36, 36), rgb(0 0 0 / 0));
}

.start-btn {
  background: none;
  border: none;
  color: #fff;
  font-family: Consolas;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  text-decoration: none;
}

.start-bg {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #272727;
}

.header-overlay {
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1;
  opacity: 1.25;
}

.header-content {
  z-index: 2;
  margin-top: 15%;
  text-shadow:
    -1.2px -1.2px 0 #000,
    1.2px -1.2px 0 #000,
    -1.2px 1.2px 0 #000,
    1.2px 1.2px 0 #000;
}

.header-content h1 {
  font-size: 50px;
  margin-bottom: 0;
}

.header-content p {
  font-size: 1.5rem;
  display: block;
  padding-bottom: 2rem;
}

/* MAIN */

.main {
  font-family: Calibri;
}

.main-overlay {
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1;
  opacity: 1.25;
}

.main-content {
  z-index: 2;
  text-shadow:
    -1.2px -1.2px 0 #000,
    1.2px -1.2px 0 #000,
    -1.2px 1.2px 0 #000,
    1.2px 1.2px 0 #000;
}

.main-content h1 {
  font-size: 50px;
  margin-bottom: 0;
}

.main-content p {
  font-size: 1.5rem;
  display: block;
  padding-bottom: 2rem;
}


/* ABOUT ME */

.aboutme {
  font-family: Calibri;
}

.aboutme-overlay {
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1;
  opacity: 1.25;
}

.aboutme-content {
  z-index: 2;
  text-shadow:
    -1.2px -1.2px 0 #000,
    1.2px -1.2px 0 #000,
    -1.2px 1.2px 0 #000,
    1.2px 1.2px 0 #000;
}

.aboutme-content h1 {
  font-size: 50px;
  margin-bottom: 0;
}

.aboutme-content p {
  font-size: 1.5rem;
  display: block;
}

.aboutme-text {
  display: block;
  padding-bottom: 0;
  margin-bottom: 0;
}

.icon {
  display: inline-block;
  margin-top: 10px;
  width: 48px;
  height: 48px;
}

.vertical-icons1 .icon {
  margin-bottom: 10px;
  margin-top: 5px;
  width: 32px;
}

.vertical-icons2 .icon {
  margin-bottom: 10px;
  margin-top: 5px;
  width: 32px;
}

.horizontal-icons {
  display: flex;
  gap: 20px; /* Space between the columns */
  justify-content: center; /* Center the entire row if needed */
}

.icon-column {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center icons within each column */
}

.vertical-icons1, .vertical-icons2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.icon-column img.icon {
  margin-top: 10px;
}

.projects-overlay {
  margin-top: 20rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.project-background {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #3b3b3bb2;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: auto;
  display: block;
}

.project-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
}

.project-text h2 {
  margin-bottom: 20px;
  /* margin-top: 16px; */
}

.project-text p {
  margin-bottom: 5px;
}




/* NAVBAR */

nav {
  display: block;
  opacity: 100;
  z-index: 15;
  margin-top: 15px;
}

nav button {
  background-color: #464646;
  border: 2px solid black;
  border-radius: 10px;
  border-color: black;
  color: white;
  font-family: Consolas;
  font-size: 15.6px;
  width: 100px;
  height: 25px;
}

nav button:hover {
  background-color: #5a5a5a;
  border: 2px solid black;
  border-color: black;
  color: white;
  font-family: Consolas;
  font-size: 15.6px;
  width: 100px;
  height: 25px;
}


p {
  text-shadow:
    -1.2px -1.2px 0 #000,
    1.2px -1.2px 0 #000,
    -1.2px 1.2px 0 #000,
    1.2px 1.2px 0 #000;
    font-family: Calibri;
    font-size: 1.2rem;
}

a {
  text-shadow:
    -1.2px -1.2px 0 #000,
    1.2px -1.2px 0 #000,
    -1.2px 1.2px 0 #000,
    1.2px 1.2px 0 #000;
    font-family: Calibri;
    font-size: 1.2rem;
}

h1 {
  text-shadow:
    -1.2px -1.2px 0 #000,
    1.2px -1.2px 0 #000,
    -1.2px 1.2px 0 #000,
    1.2px 1.2px 0 #000;
  font-size: 2.5rem;
}


.contact-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info {
  color: #ffffff;
  padding: 20px;
  max-width: 600px;
  width: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  width: 24px; /* Adjust size as needed */
  height: 24px; /* Adjust size as needed */
  margin-right: 10px;
}

.contact-link {
  color: #27e6ff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.contact-link:hover {
  color: #007bff;
}

















@media (max-width: 960px) {
  .container {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
