html,
body {
  box-sizing: border-box;
  width: 100%;
  height: 100%;

  background: #faf7ff;

  font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
  color: #262a47;
  line-height: 1.2em;
  letter-spacing: 1px;
}

p,
pre,
li {
  margin: 10px;
}

nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  margin: 10px 0 30px 0;
}

.body_container {
  display: flex;
  flex-direction: column;
}

body header {
  text-align: center;
}

.main_content_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1 1 auto;
}

body footer {
  flex-basis: 50px;
  margin: 0 auto;
  width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.main_content_container_column {
  width: 460px;
}

.main_content_container_column.left_column {
  width: 460px;
  text-align: right;
}

section {
  margin: 20px;
  padding: 10px;
}

section h2 {
  font-size: 1.4em;
  font-weight: 500;
  margin: 10px;
}

h3 {
  font-size: 1.1em;
  font-weight: 500;
  margin: 5px;
}

.list_icons {
  display: inline-flex;
}

.list_icons li {
  margin: 4px;
}

.list_icons:first-child {
  margin-left: 12px;
}

.text_bold {
  font-weight: bold;
}

.header_image {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 auto;

  border: 2px solid #191d3d;
  border-radius: 50%;
}

.header_text {
  margin: 20px 0 10px 0;

  font-size: 1.4em;
}

body footer div {
  display: flex;
  justify-content: center;
  width: 100px;
}

a,
a:visited {
  font-variant: small-caps;
  text-decoration: none;
  color: #59619b
}

a:hover {
  color: #202b85;
}

.my-projects__wrapper {
  flex-direction: column;

  display: flex;

  margin-left: 10px;
}

.my-projects__header {
  width: 200px;
}

.my-projects__row {
  display: flex;
}

.my-projects__item {
  position: relative;

  width: 200px;
  height: 150px;
}

.my-projects__image {
  transition: 0.25s;

  border-radius: 10px;
  width: 175px;
  height: 117px;
}

.my-projects__link {
  position: relative;
}

.my-projects__image:hover,
.my-projects__item:last-child.my-projects__item__image:hover {
  position: relative;
  z-index: 10;

  width: 350px;
  height: 234px;
  box-shadow: -6px 6px 5px #262a472d;
}

.my-projects__item:last-child .my-projects__image:hover {
  margin-left: -175px;
}

.my-projects__row:last-child .my-projects__image:hover {
  margin-top: -117px;
}