body {
  margin: 0;
  padding: 0;
  background: linear-gradient(#2A2E35, #15151E);
  user-select: none;
  color: rgb(237, 242, 244);
  font-family: inter;
}

a {
  color: inherit;
  text-decoration: none;
}

.button {
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgb(216, 0, 4), rgb(239, 35, 38));
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}
.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.button:hover::after {
  opacity: 0.3;
}

.button:hover {
  transform: translateY(-3px);
}

h1.non-card {
  text-align: center;
}

p.non-card {
  width: 33vw;
  text-align: center;
}

.card {
  background-color: rgba(42, 46, 53, 0.5);
  border-radius: 20px;
  padding: 20px;
}
.card .card-content img {
  width: 100%;
}
.card .card-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  background-color: rgba(42, 46, 53, 0.5);
  border-radius: 10px;
  padding: 20px;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
}

.card.project {
  position: relative;
  overflow: hidden;
  transition: 0.2s ease;
}
.card.project::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.card.project:hover::after {
  opacity: 0.3;
}

.card.project:hover {
  transform: translateY(-5px);
}

.highlight {
  color: rgb(239, 35, 38);
  text-decoration: underline;
}

header {
  z-index: 100000;
  position: sticky;
  top: 0;
  color: white;
  height: 100px;
  background: linear-gradient(90deg, rgba(216, 0, 4, 0.7), rgba(239, 35, 38, 0.7));
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
  align-items: center;
  justify-content: space-between;
}
header .nav {
  color: white;
  font-size: 20px;
  padding: 50px;
}
header .nav a {
  color: inherit;
  text-decoration: underline;
  margin-left: 50px;
  font-weight: 500;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
header .nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
header .icon {
  font-family: "Courier New", Courier, monospace;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12.5px;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
}
header .icon .profile {
  height: 75px;
  width: 75px;
  margin-right: 25px;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25));
}
header .icon .text {
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25));
}

.content {
  min-height: calc(100vh - 475px);
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 100px;
}
.content .hero-story {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 100px;
  height: 85vh;
  background: url("https://media.jannes64.nl/background.svg") no-repeat center center/cover;
  box-shadow: 1px -8px 8px 0px rgba(0, 0, 0, 0.25) inset;
}
.content .hero-story .text {
  font-family: Impact, fantasy;
  font-size: 100px;
}
.content .hero-story .button {
  font-size: 20px;
  padding: 20px;
}
.content .about-me {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content .experience {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content .experience .cards img {
  height: 100%;
  border-radius: 10px;
}
.content .experience .cards {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 300px);
  grid-template-rows: repeat(2, 300px);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}
.content .projects {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content .projects .cards .card-content {
  display: flex;
  align-items: start;
  justify-content: start;
}
.content .projects .cards .card-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.content .projects .cards .card-content h1 {
  margin-bottom: -10px;
}
.content .projects .cards .card-content p {
  margin-bottom: 0;
}
.content .projects .cards {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 400px);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  margin-bottom: 25px;
  cursor: pointer;
}
.content .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 25px;
  height: 225px;
  background: linear-gradient(90deg, rgba(216, 0, 4, 0.7), rgba(239, 35, 38, 0.7));
}
footer .footer-item img {
  height: 50%;
  width: 50%;
}
footer .footer-item h1 {
  font-size: larger;
}
footer .footer-item {
  width: 33.3333333333vw;
}
footer .footer-item.copyright {
  display: flex;
  align-items: center;
}

/*# sourceMappingURL=styles.css.map */
