@font-face {
  font-family: "Unifont";
  src: url("/assets/Unifont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;

  border: none;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;

  background-color: #ffa500;

  font-family: "Unifont";
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card {
  display: flex;
  margin: 2rem;
  padding: 1rem;

  border-radius: 50px;

  background: #ffa500;
  box-shadow: 20px 20px 60px #d98c00, -20px -20px 60px #ffbe00;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  overflow: hidden;
}

.card > .card-content {
  display: flex;
  overflow: auto;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

.header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header > .avatar {
  height: 5rem;
  width: 5rem;

  border-radius: 50%;
}

.header > .avatar > img.avatar-img {
  height: 100%;
  width: 100%;
}

.header > .info {
  margin: 1rem;
}

.header > .info > h1.name {
  margin: 0;

  font-size: 1.5rem;
  font-weight: 1000;
}

.header > .info > .code > pre {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.header > .info > .code > pre > code {
  font-family: "Unifont";
  font-weight: bold;
}

.header > .info > .code > pre > code > .code-blue {
  color: blue;
  font-weight: 900;
}

.main > .buttons > a {
  display: flex;
  text-decoration: none;
  flex-direction: column;
  align-items: center;
}

.main > .buttons .icon svg {
  margin-right: 0.2rem;
}

.main > .buttons .icon svg {
  height: 1.2rem;
  width: 1.2rem;
}

button.link-button {
  display: flex;
  margin: 0.5rem;
  padding: 0.7em 1.7em;
  width: 15rem;

  border: 1px solid rgb(255, 190, 0);
  border-radius: 0.5em;

  background: orange;

  color: #090909;
  font-family: inherit;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 6px 6px 12px #d98c00, -6px -6px 12px orange;
  cursor: pointer;
  transition: all 0.3s;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

button.link-button:hover {
  box-shadow: 8px 8px 16px #d98c00, -8px -8px 16px #ffbe00;
  transform: translateY(-2px);
}

button.link-button:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #d98c00, inset -4px -4px 12px orange;
  transform: translateY(1px);
}

.footer {
  margin-top: 1rem;
}

/*
Useful websites:
https://neumorphism.io/#e0e0e0
https://uiverse.io/ke1221/ancient-walrus-24
*/
