@font-face {
  font-family: 'TeknopolisFont';
  src: url('/lucidity-condensed.ttf');
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
}

body {
  background-color: #0e0e0e;
  color: rgb(230, 230, 230);
  font-family: Arial, Helvetica, sans-serif;
}

header {
  display: flex;
  position: fixed;
  background-color: black;
  width: 100%;
  padding: 10px;
}

nav a {
  color: rgb(190, 190, 190);
  text-decoration: none;
  font-family: TeknopolisFont;
}

nav {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: x-large;
}

footer a {
  color: rgb(190, 190, 190);
}

footer a:hover {
  color: white;
}

nav a:hover {
  color: white;
}

.big-image {
  width: 80px;
  padding-right: 40px;
}

.offset-top {
  padding-top: 120px;
  padding-bottom: 20px;
}

.small-width {
  width: 600px;
  margin: 0 auto;
}


.centered-text {
  text-align: center;
}

.left-centered-text {
  text-align: left;
}

.title {
  font-family: TeknopolisFont;
  font-size: 60px;
  margin-bottom: 10px;
  margin-top: 40px;
  color: rgb(182, 182, 182);
}

.small-title {
  font-family: TeknopolisFont;
  font-size: x-large;
}

#team {
  padding-top: 20px;
  gap: 20px;
  display: flex;
  justify-content: center;
}

.ppl-photo {
  width: 120px;
  border-radius: 10px;
}

.ppl-card {
  text-align: center;
  padding: 10px;
  background-color: rgb(31, 31, 31);
  border-radius: 10px;
  width: 120px;
}

.ppl-card a {
  color: rgb(190, 190, 190);
  font-size: smaller;
}

.ppl-card a:hover {
  color: white;
}

.ppl-name {
  font-family: TeknopolisFont;
}

.ppl-role {
  font-size: small;
}

.devlog-entry {
  font-family: monospace;
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: rgb(179, 179, 179);
  color: black;
  padding: 20px;
}

.entry-title {
  font-size: x-large;
  padding-bottom: 5px;
}

.entry-content {
  padding-bottom: 20px;
}

.entry-date {
  color: rgb(77, 77, 77);
  font-size: small;
  padding-bottom: 20px;

}

.entry-image {
  max-width: 100%;
}

footer {
  background-color: black;
  padding: 60px;
  text-align: center;
}

#about-us,
#teknopolis {
  scroll-margin-top: 120px;
}


@media (max-width: 700px) {
  body {
    font-size: smaller;
  }

  .small-width {
    width: 90%;
  }

  nav {
    font-size: large;
    gap: 20px;
  }

  .big-image {
    width: 50px;
    padding-right: 20px;
  }

  .offset-top {
    padding-top: 80px;
  }

  .ppl-card {
    width: 80px;
  }

  .ppl-photo {
    width: 80px;
  }
  
}