body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #AFAFAF;
  padding: 2rem;
  color: #333333;
}

body::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #EEEEEE;
}

body::-webkit-scrollbar-thumb {
  background-color: #888888;
  border-radius: 4px;
  border: 2px solid #EEEEEE;
}

.navbar {
  position: fixed;
  display: flex;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: #00000080;
}

.navbar .start,
.navbar .middle,
.navbar .end {
  flex: 1;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.navbar .start {
  justify-content: flex-start;
}

.navbar .middle {
  justify-content: center;
}

.navbar .end {
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  transition: all 0.5s;
  font-weight: bold;
  font-size: 14px;
  background-color: #C1E4F8;
  color: #252525;
  border-radius: 8px;
  padding: 15px 30px;
  cursor: pointer;
  box-shadow: 0 0px 7px -5px #00000080;
  text-align: center;
}

.button:hover {
  background-color: #A7D7F3;
  color: #1D1D1D;
}

.button.before {
  background-color: #A7D7F3;
  color: #1D1D1D;
}

.button.before:hover {
  background-color: #C1E4F8;
  color: #252525;
}

.shine {
  position: relative;
  background-color: #DAA520;
  overflow: hidden;
  transition: all 0.5s;
}

.shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, #FFFFFF00 0%, #FFFFFF99 50%, #FFFFFF00 100%);
  transform: skewX(-20deg);
  animation: shineMove 2.75s steps(1, end) infinite;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.shine:hover {
  background-color: #D39A0A;
}

@keyframes shineMove {
  0% {
    left: -75%;
  }
  30% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

.star {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #FFFFFF;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 0 2px #FFFFFF);
  pointer-events: none;
  opacity: 0;
  animation: starAppear 1.5s forwards ease-out, starFade 1.5s forwards ease-out, starSpin 1.5s linear infinite;
  transform-origin: center center;
}

@keyframes starAppear {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes starFade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes starSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.container {
  display: block;
}

.container h1 {
  font-size: 30px;
  font-weight: bolder;
  margin-left: 25px;
}

.container div {
  display: block;
}

.container #profile {
  margin-top: 75px;
  margin-bottom: 100px;
}

.container #profile div {
  display: inline-flex;
}

.container #profile div div {
  display: block;
}

.container #profile .profileImg {
  height: 200px;
  border: 2px solid #FFFFFF;
  border-radius: 100px;
  margin: 10px;
  margin-left: 40px;
}

.container #profile .name {
  font-size: 30px;
  font-weight: bolder;
  margin-left: 25px;
  height: 10px;
}

.container #profile #subdescription {
  font-size: 16px;
  font-weight: bold;
  margin-left: 25px;
}

.container #profile #subdescription::before {
  content: "16 year old\00a0";
  font-weight: 500;
}

.container #profile #subdescription::after {
  content: "|";
  animation: typeAnimation 1s infinite;
}

@keyframes typeAnimation {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.container #profile .description {
  font-size: 16px;
  margin-left: 40px;
}

.container #profile .button {
  margin-left: 40px;
}

.container #projects {
  margin-top: 75px;
  margin-bottom: 100px;
}

.container #projects div {
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.container #projects div::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.container #projects div::-webkit-scrollbar-track {
  background: #EEEEEE;
}

.container #projects div::-webkit-scrollbar-thumb {
  background-color: #888888;
  border-radius: 4px;
  border: 2px solid #EEEEEE;
}

.container #projects div div {
  display: inline-flex;
  margin-left: 40px;
  width: 500px;
  cursor: pointer;
}

.container #projects div > div {
  display: block;
  border: 2px solid #FFFFFF50;
  background-color: #FFFFFF50;
  border-radius: 50px;
}

.container #projects [class^="project"] {
  display: inline-block;
  white-space: normal;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.container #projects [class^="project"] img {
  height: 100px;
  padding: 15px;
  border: 2px solid #FFFFFF50;
  background-color: #FFFFFF50;
  border-radius: 50px;
}

.container #projects [class^="project"] p.name {
  font-weight: 500;
  margin-top: 1px;
  text-align: center;
}

.container #projects [class^="project"] p.date {
  font-weight: 450;
  margin-top: -15px;
  text-align: center;
}

.container #projects [class^="project"] p {
  text-align: center;
}

.container #skills {
  margin-top: 75px;
  margin-bottom: 100px;
}

.container #skills p {
  margin-left: 40px;
  font-weight: 500;
  font-size: 16px;
}

.container #skills > div {
  display: inline-flex;
  justify-content: center;
  margin-top: 10px;
  margin-right: 10px;
  height: 64px;
  min-width: 64px;
  border: 2px solid #FFFFFF50;
  background-color: #FFFFFF50;
  white-space: nowrap;
  padding: 10px;
}

.container #skills div > div {
  opacity: 0;
  position: absolute;
  display: flex;
  background-color: #3A3A3A50;
  max-height: 100px;
  margin-top: 80px;
  pointer-events: none;
  transition: all 0.5s;
  z-index: 1000;
}

.container #skills div:hover div {
  opacity: 1;
  pointer-events: auto;
}

.container #skills div div img {
  height: 32px;
  min-width: 32px;
  margin: auto;
  margin-left: 10px;
}

.container #skills div div div {
  position: relative;
  top: 0;
  background-color: #00000000;
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.container #skills div div div p {
  color: #FFFFFF;
  margin: 0;
}

.container #contact {
  margin-top: 75px;
  margin-bottom: 100px;
}

.container #contact p {
  display: block;
  margin: 0;
  margin-top: 5px;
  margin-left: 40px;
  font-weight: 500;
}

.container #contact p a {
  font-weight: normal;
  color: #0000FF;
  text-decoration: none;
}

.container #contact p a:hover {
  text-decoration: underline;
  color: #0000A0;
}

.container #law {
  display: block;
  text-align: center;
  font-weight: 500;
}

.container #law #law-link {
  color: #0000FF;
  text-decoration: none;
}

.container #law a#law-link:hover {
  text-decoration: underline;
  color: #0000A0;
}