body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: Encode Sans, sans-serif;
  background: url("assets/bg.png") repeat fixed;
  animation: fadeIn 1s linear;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@font-face {
   font-family: Encode Sans;
   src: url(assets/font/EncodeSans.ttf);
}

p {
  font-size: 18px;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: #CCCCCC;
}

h4 {
  font-weight: 500;
}

.headimg {
  padding-top: 24px;
}

.description p {
  margin: 8px;
  line-height: 2;
}

.navbar {
  font-size: 16px;
  padding-bottom: 8px;
}

.navbar a {
  margin: 4px;
}

.navbar p {
  margin-left: 4px;
  margin-right: 4px;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 8px;
}

.project-container img {
  border: 4px solid #000000;
  border-radius: 25px 0 25px 0;
}

.about-container {
  margin-top: 6px;
}

.about-container img {
  width: 420px;
  height: 100%;
}

.about-text {
  text-align: left;
  width: 86%;
  max-width: 600px;
}

.about-text p {
  line-height: 2;
  font-size: 18.2px;
}

.javascript-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  padding-top: 8px;
  padding-bottom: 12px;
}

.javascript-container iframe {
  width: 420px;
  height: 420px;
  margin-top: 8px;
  background: black;
  border: 4px solid #000000;
  border-radius: 25px 0 25px 0;
  aspect-ratio: 1 / 1;
}

.gallery-container img {
  width: 420px;
  height: 100%;
}

.gallery-text {
  text-align: left;
  width: 86%;
  max-width: 600px;
}

.gallery-text p {
  font-size: 19px;
  line-height: 2;
}