html,
body {
  height: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
}
*,
*::after,
*::before {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: #000000;
}
.container {
  width: 1200px;
  margin: 0 auto;
}
ul {
  list-style: none;
}
body .wrapper {
  display: flex;
  flex-direction: column;
  font-family: 'Courier New', Courier, monospace;
  font-size: larger;
  background: #bedded;
  background-image: linear-gradient(to bottom, #bedded 0%, #cafae1 50%, #fcfce1 100%);
  background-attachment: fixed;
}
body .wrapper .header {
  display: block;
  position: sticky;
  top: 0;
  z-index: 3;
}
body .wrapper .header.scrolled {
  background-image: linear-gradient(to bottom, #bedded 0%, #cafae1 1000%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
body .wrapper .header .menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
body .wrapper .header .menu-item {
  margin: 0 15px;
  text-transform: uppercase;
  font-weight: bold;
}
body .wrapper .header .menu-item__link-block {
  padding: 20px 15px;
  transition: all ease-in-out 0.5s;
}
body .wrapper .header .menu-item__link-block:hover {
  transform: rotate(-20deg) scale(1.1);
  color: #1100ff;
}
body .wrapper .main {
  flex-grow: 1;
}
body .wrapper .main .about-me {
  margin-bottom: 100px;
  min-height: 800px;
  display: flex;
  align-items: center;
}
body .wrapper .main .about-me__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .wrapper .main .about-me__block-info {
  display: block;
  max-width: 500px;
  text-align: center;
  align-self: center;
}
body .wrapper .main .about-me__block-info-title {
  font-size: 58px;
}
body .wrapper .main .about-me__block-info-text {
  text-align: justify;
  font-size: 18px;
  margin: 30px 0px;
}
body .wrapper .main .about-me__block-info-link {
  border: 5px solid #000000;
  border-radius: 15px;
  padding: 5px 12px;
}
body .wrapper .main .about-me__block-info-link:hover {
  background-color: #cecece;
}
body .wrapper .main .about-me__block-image {
  min-width: 500px;
}
body .wrapper .main .technologies {
  margin-bottom: 100px;
  min-height: 800px;
  display: flex;
  align-items: center;
}
body .wrapper .main .technologies-title {
  text-align: center;
  margin: 50px 0;
  font-size: 48px;
  font-weight: 800;
}
body .wrapper .main .technologies-tab {
  width: 0 500px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
body .wrapper .main .technologies-tab__item {
  width: 200px;
  height: auto;
}
body .wrapper .main .technologies-tab__item-img {
  width: 100%;
}
body .wrapper .main .works {
  margin-bottom: 100px;
  min-height: 800px;
  display: flex;
  align-items: center;
}
body .wrapper .main .works-title {
  text-align: center;
  margin: 50px 0;
  font-size: 48px;
  font-weight: 800;
}
body .wrapper .main .works-tab {
  margin-bottom: auto ;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
body .wrapper .main .works-tab__item {
  min-height: 200px;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
body .wrapper .main .works-tab__item-image {
  width: 100%;
}
body .wrapper .footer {
  padding: 20px 0;
}
body .wrapper .footer .copy {
  text-align: center;
}
