.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.container.subpage {
  height: 50px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.heading {
  margin-top: 10px;
  font-family: Loveyalikeasister, sans-serif;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0px;
  text-transform: none;
}

.heading.suboage {
  margin-left: 10px;
  font-size: 17px;
}

.logo-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.logo-block.subpage {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  color: #000;
  text-decoration: none;
}

.personal-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.user {
  border-radius: 40px;
}

.textblock {
  margin-left: 15px;
  font-family: Inconsolata, sans-serif;
  font-size: 17px;
}

.textblock.bold {
  -webkit-transition: all 300ms cubic-bezier(.77, 0, .175, 1);
  transition: all 300ms cubic-bezier(.77, 0, .175, 1);
  font-weight: 700;
}

.textblock.small {
  -webkit-transition: all 300ms cubic-bezier(.77, 0, .175, 1);
  transition: all 300ms cubic-bezier(.77, 0, .175, 1);
}

.skil-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 40px;
  padding-left: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.skill {
  margin-bottom: 10px;
  margin-left: 10px;
  padding: 6px 15px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-transition: all 300ms cubic-bezier(.77, 0, .175, 1);
  transition: all 300ms cubic-bezier(.77, 0, .175, 1);
  font-family: Inconsolata, sans-serif;
}

.skill.link {
  -webkit-transition-property: all;
  transition-property: all;
  color: #ff9d00;
  font-weight: 700;
  text-decoration: none;
}

.skill.link:hover {
  background-color: #ff9d00;
  color: #fff;
}

.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #eee;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.section-2 {
  height: 25ch;
  padding-bottom: 0px;
  background-color: #eee;
}

.body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

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

.text-span {
  font-size: 16px;
  font-weight: 700;
}

.h3 {
  font-size: 16px;
  font-weight: 700;
}

.h2 {
  font-size: 18px;
  font-weight: 700;
}

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

.link {
  color: #ff9d00;
}

.section-4 {
  margin-top: 20px;
}

.section-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

@media screen and (max-width: 991px) {
  .personal-block {
    width: 30%;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .textblock {
    font-size: 17px;
  }

  .textblock.small {
    font-size: 15px;
  }

  .skil-block {
    width: 60%;
    height: 15vh;
  }

  .skill {
    -webkit-transition: all 300ms cubic-bezier(.77, 0, .175, 1);
    transition: all 300ms cubic-bezier(.77, 0, .175, 1);
  }

  .section {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .section-2 {
    background-color: #eee;
  }
}

@media screen and (max-width: 767px) {
  .container {
    height: auto;
  }

  .container.subpage {
    padding-right: 20px;
    padding-left: 20px;
  }

  .personal-block {
    width: 100%;
    margin-right: 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .skil-block {
    width: 100%;
    height: auto;
    margin-top: 40px;
    margin-right: 20px;
    margin-left: 20px;
    padding-left: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .skill {
    margin-right: 5px;
    margin-left: 5px;
  }

  .section {
    padding-top: 30px;
    padding-bottom: 30px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .div-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .body {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .container-2 {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .container-3 {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    height: 50vh;
  }

  .personal-block {
    width: auto;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .skil-block {
    margin-top: 40px;
  }

  .div-block {
    display: block;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .h1 {
    font-family: Inconsolata, sans-serif;
  }

  .container-2 {
    padding-right: 15px;
    padding-left: 15px;
  }

  .container-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@font-face {
  font-family: 'Loveyalikeasister';
  src: url('../fonts/LoveYaLikeASister-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inconsolata';
  src: url('../fonts/Inconsolata-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inconsolata';
  src: url('../fonts/Inconsolata-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}