@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Flow+Rounded&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Emoji:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&display=swap');

body {
  font-family: 'Kode Mono', monospace, sans-serif;
  background: #000;
  color: #aaa;
}

#app {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 40px);
}

.banner {
  position: absolute;
  top: 0;
  width: -webkit-fill-available;
  font-size: 10px;
  text-align: center;
  padding-top: 5px;
}

.full-center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-60%) translateX(-50%);
}

h1 {
  margin: 0.2em;
  text-align: center;
  font-size: 4em;
  font-family: 'Fredericka the Great', system-ui;
  display: block;
  user-select: none;
  text-transform: lowercase;
}
h2 {
  margin: 1em;
  font-size: 32px;
  font-family: 'Fredericka the Great', system-ui;
  display: block;
  user-select: none;
}

input {
  background: none;
  border: none;
  outline: none;
  padding-top: 1em;
  padding-bottom: 1em;
  color: white;
  font-size: 1.2em;
  font-family: 'Flow Rounded';
  text-transform: lowercase;
  width: 100%;
  text-align: center;
}
input::placeholder {
  font-family: 'Kode Mono', monospace;
}

.btn {
  background: none;
  border: none;
  padding: 0.5em 1em;
  font-size: 1.2em;
  font-family: 'Kode Mono', monospace;
  text-transform: lowercase;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  color: #fff;
}

.h-center {
  width: 100%;
  text-align: center;
}
.h-center p {
  text-align: center !important;
}

.absolute {
  position: absolute;
}

wired-item span {
  font-family: 'Noto Emoji';
}

.project-card {
  width: 300px;
  opacity: 0.75;
  user-select: none;
  cursor: pointer;
  margin: 15px;
  display: inline-block;
}
.project-card img {
  max-width: 100%;
}
.project-card h3 {
  text-align: left;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 25px;
  font-family: 'Fredericka the Great', system-ui;
  margin: 0;
  margin-bottom: 5px;
  color: white;
}
.project-card h3 span {
  font-size: 18px;
  font-family: 'Noto Emoji';
}
.project-card p {
  font-family: 'Kode Mono', monospace;
  font-size: 13px;
  padding-left: 5px;
  padding-right: 5px;
  text-align: justify;
  margin: 0;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
  overflow: hidden;
  color: white;
}
.project-card:hover {
  opacity: 1;
}

.footer {
  font-family: 'Kode Mono', monospace;
  font-size: 12px;
  padding-top: 40px;
  text-align: center;
  position: relative;
  bottom: 0;
}

.article {
  padding: 40px;
  padding-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex: 1;
}
.article h2,h3,h4,p,ul,ol,li,blockquote {
  text-align: left;
  width: -webkit-fill-available;
}
.article h2, h3 {
  padding: 0px;
  margin: 0px;
}
.article h2 {
  text-transform: lowercase;
  padding-top: 30px;
}
.article h3 {
  padding-top: 20px;
}
.article .image {
  height: fit-content;
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}
.article .image img {
  max-height: 350px;
  height: auto;
  width: auto;
}
.article .image span {
  padding: 10px;
  font-size: 0.9em;
  color: #777;
}
.article p, ul, ol, li {
  font-size: 16px;
}
.article b {
  color: white;
}

.contact{
  text-decoration: none !important;
  color: #777;
}

a, a:visited, a:hover, a:active {
  color: #fc96d1 !important;
}
