:root {
  --header-color: #333;
  --background-color: #FFF;
}

@font-face {
  font-family: DMMono;
  src: url("../fonts/DMMono-Regular.ttf")
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Regular.ttf")
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Medium.ttf")
}

body {
  background-color: var(--background-color);
  padding: 50px;
  font-size: 13px;
  line-height: 1.3;
  color: #aaa;
  font-family: DMMono,Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1,
h2,
h3 {
  line-height: 1.4;
  letter-spacing: 1;
  font-weight: 400;
  color: var(--header-color)
}

h1 {
  font-size: 20px;
  font-weight: 700;
  font-weight: 400;
}

h2 {
  font-size: 16px;
}

p {
  margin-top: 5px;
  line-height: 1.5;
}

.container {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  position: relative;
  z-index: 1;
}

.about {
  max-width: 350px;
}

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

.info {
  flex-direction: column;
  flex: 1 1;
  justify-content: space-between;
}

.contact {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 300px;
  align-items: center;
  justify-content: space-evenly;
  margin: 10px 0 10px 30px;
}

.icon {
  height: 14px;
}

li > a > img {
  height: 17px;
  width: 17px;
  border-radius: 5px;
  background-position: center;
  margin-left: 4px;
}

li > a {
  display: inline-flex;
  align-items: center;
  margin-right: 2px;
}

.me-container {
  cursor: pointer;
  width: 92px;
  height: 100px;
  margin: 0px;
  position: relative;
  margin-right: 16px;
}

.me {
  position: absolute;
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 3%;
  left: 0;
  top: 0;
}

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

.block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section {
  margin-top: 16px;
}

li {
  color: #aaa;
  text-decoration: none;
  margin: 2px 0 2px 0;
}

a {
  color: #aaa;
  text-decoration: underline;
}

a:hover {
  font-weight: 700;
}

footer {
  text-align: center;
}