* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: NotoSans;
  line-height: 1.5;
  color: #775544;
}

html, body {
  background-color: #ffffff;
  font-size: 10px;
}

body > header,
body > nav,
body > section,
body > article,
body > aside,
body > footer,
body > div {
  padding: 2rem;
}

@font-face {
  font-family: "NotoSans";
  src: url("/fonts/NotoSans-Regular.woff2") format("truetype");
}

@font-face {
  font-family: "NotoSans";
  src: url("/fonts/NotoSans-Black.woff2") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: "NotoSans";
  src: url("/fonts/NotoSans-Italic.woff2") format("truetype");
  font-style: italic;
}

@font-face {
  font-family: "NotoSans";
  src: url("/fonts/NotoSans-BlackItalic.woff2") format("truetype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "JetBrainsMono";
  src: url("/fonts/JetBrainsMono-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrainsMono";
  src: url("/fonts/JetBrainsMono-Bold.woff2") format("woff2");
  font-weight: bold;
}

@font-face {
  font-family: "JetBrainsMono";
  src: url("/fonts/JetBrainsMono-Italic.woff2") format("woff2");
  font-style: italic;
}

@font-face {
  font-family: "JetBrainsMono";
  src: url("/fonts/JetBrainsMono-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
}

h1 {
  font-size: 5rem;
}

h1 a:link,
h1 a:visited,
h1 a:hover,
h1 a:active {
  text-decoration: none;
}

h2 {
  font-size: 3rem;
}

p {
  margin-bottom: 2rem;
  font-size: 2rem;
}

a {
  font-weight: bold;
}
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: underline; color: #996655; }
a:active { text-decoration: none; }

.margin-1x {
  margin: 1rem
}

.margin-1x__tb {
  margin: 1rem 0;
}

.margin-1x__lr {
  margin: 0 1rem;
}

.margin-2x {
  margin: 2rem
}

.margin-2x__tb {
  margin: 2rem 0;
}

.margin-2x__b {
  margin: 0 0 2rem 0;
}

.margin-2x__lr {
  margin: 0 2rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.centered-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.block {
  margin: 2rem 0;
  padding: 4rem 0;
}

.block h3 {
  margin-bottom: 2rem;
  text-align: center;
}

.card {
  box-shadow: 0 0 4rem 0 #ffeedd;
  border-radius: 1rem;
}

.code {
  font-family: JetBrainsMono;
}

.one-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-list {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.main-header {
  box-shadow: 0 0 4rem 0 #ffeedd;
}

.main-header h1,
.main-header h2 {
  text-align: center;
}

.logo-container {
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  border-radius: 2rem;
  width: 100px;
  display: block;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.main-menu li {
  margin: 0 1rem;
}

.main-menu li a {
  border-radius: 1rem;
  padding: 1rem 2rem;
  display: block;
  text-decoration: none;
}

.main-menu li a:hover,
.main-menu li a.active {
  background-color: #775544;
  color: #ffffff;
}

.main-section {
  margin: 0 auto;
  max-width: 104rem;
  font-size: 2rem;
}

[class^="language-"] {
  font-weight: bold;
}

.language-html {
  color: #e44d26;
}

.language-css {
  color: #214ce5;
}

.language-javascript {
  color: #e6bf00;
}

.language-typescript {
  color: #3178c6;
}

.language-nodejs {
  color: #417e38;
}

.language-react {
  color: #087ea4;
}

.language-python {
  color: #3776ab;
}

.language-sql {
  color: #cc33cc;
}

.language-git {
  color: #f14e32;
}

.language-docker {
  color: #1d63ed;
}

.language-aws {
  color: #ff9900;
}

.certifications img {
  max-width: 100px;
}

.project-list {
  margin-bottom: 4rem;
  align-items: stretch;
  gap: 10rem;
}

.project-tile {
  border-radius: 4rem;
  flex: 0 0 calc(50% - 10rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
}

.project-tile img {
  width: 100%;
}

.project-tile .text-content {
  padding: 4rem;
  flex: 1;
}

.project-tile p {
  font-size: 1.5rem;
}

.project-tile .project-tile__action-btn {
  border-radius: 1rem;
  padding: 1rem;
  display: block;
  background-color: #775544;
  color: #ffffff;
  text-decoration: none;
}

.project-tile .call-to-action {
  padding: 4rem;
}

.project-tile .project-tile__action-btn:hover {
  background-color: #996655;
}

.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #f7f7f7;
  opacity: 0.8;
}

.modal-window {
  margin: 2rem;
  border-radius: 2rem;
  padding: 4rem;
  max-width: 60rem;
  position: relative;
  background-color: #f7f7f7;
  box-shadow: 0 0 4rem 0 #ffeedd;
}

.modal-window::before {
  border-radius: 100%;
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #ff3300;
}

.main-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

@media screen and (max-width:640px)  {
  .project-tile {
    flex: 0 0 100%;
  }
}
