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

body,
html {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: #121212;
}

.header-container {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: left;
}

header {
  margin-top: 40px;
  font-family: 'Inter', serif;
  font-size: 28px;
  font-weight: 800;
  color: #f3f3f3;
  margin-bottom: 12px;
}

.title-text {
  width: 100%;
  font-family: 'Inter', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #f3f3f3;
  margin-bottom: 12px;
}

.location {
  font-family: 'Inter', serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #f3f3f3;
  margin-bottom: 12px;
}

.socials {
  display: flex;
  gap: 4px;
  margin-left: -4px;
}

.block {
  height: 30px;
  width: 30px;
  color: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block:hover {
  /* background-color: #c3b1e1; */
  cursor: pointer;
}

.block,
.skill {
  background-color: transparent;
}

i:hover {
  color: #c3b1e1;
}

.about-container,
.experience-container,
.education-container,
.project-container {
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
  height: auto;
}

.title {
  font-family: 'Inter', serif;
  font-size: 28px;
  font-weight: 800;
  color: #f3f3f3;
  margin-bottom: 12px;
}

.about-text {
  font-family: 'Inter', serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 20px;
  color: #f3f3f3;
  margin-bottom: 12px;
}

.job-container {
  display: flex;
  justify-content: space-between;
  /* border: 1px solid rebeccapurple; */
}

.job {
  font-family: 'Inter', serif;
  font-size: 20px;
  font-weight: 600;
  color: #f3f3f3;
  margin-bottom: 4px;
}

.date {
  font-family: 'Inter', serif;
  font-size: 16px;
  font-weight: 300;
  color: #f3f3f3;
  display: flex;
  gap: 4px;
}

a {
  text-decoration: none;
  margin-bottom: 8px;
  color: #f3f3f3;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #c3b1e1;
}

.icon {
  margin-top: 14px;
  text-decoration: none;
}

.icon:hover {
  text-decoration: none;
}

.role {
  margin-top: 4px;
  font-family: 'Inter', serif;
  font-size: 16px;
  font-weight: 400;
  color: #f3f3f3;
  margin-bottom: 8px;
}

.job-description {
  font-family: 'Inter', serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 20px;
  color: #f3f3f3;
  margin-bottom: 12px;
  margin-top: 4px;
}

.bullets {
  margin-left: 16px;
}

.project-description {
  font-family: 'Inter', serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 20px;
  color: #f3f3f3;
  margin-bottom: 12px;
}

.project {
  /* border: 1px solid #f3f3f3; */
  border-radius: 8px;
  /* padding: 12px; */
  margin-top: 12px;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-radius: 4px;
}

.skill {
  font-family: 'Inter', serif;
  background-color: #f3f3f3;
  color: #121212;
  border-radius: 4px;
  padding: 8px;
}

footer {
  height: 100px;
  max-width: 600px;
  width: 80%;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #f3f3f3;
}

.location-clock {
  display: flex;
  justify-content: space-between;
}

#clock {
  font-family: 'Inter', serif;
  font-size: small;
  font-weight: 300;
  letter-spacing: 2px;
  color: #c3b1e1; /* Match your site's theme */
}

#shader-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  display: block;
}

/* 2k monitors */
@media (min-width: 2560px) {
  footer,
  .header-container,
  .about-container,
  .experience-container,
  .education-container,
  .project-container {
    width: 100%;
    max-width: 800px;
  }
}

/* mobile */
@media (max-width: 784px) {
  body {
    margin-left: 20px;
    margin-right: 20px;
  }
}
