@import "fonts.css";
@import "reset.css";
@import "elements-ids.css";
* {
  box-sizing: border-box;
  overflow: visible;
}
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  align-items: center;
  padding: 0px 60px;
  background: linear-gradient(
    180deg,
    #17171a 12.02%,
    rgba(27, 27, 33, 0.4) 100%
  );
  width: 100%;
  backdrop-filter: blur(15px);
  z-index: 10;
  box-sizing: border-box;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 85px;
  background: linear-gradient(180deg, #1a1717 25%, #000 100%);
}
footer {
  display: flex;
  padding: 30px 20px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  background: linear-gradient(0deg, #151416 72.6%, #0e0e0f 100%);
}
h1 {
  text-align: center;
  color: #fff;
  font-size: 96px;
  font-weight: 900;
}
h2 {
  text-align: center;
  color: #fff;
  font-size: 64px;
  font-weight: 500;
}
h3 {
  text-align: center;
  color: #fff;
  font-size: 48px;
  font-weight: 500;
}
h4 {
  text-align: left;
  color: #fff;
  font-size: 64px;
  font-weight: 900;
  width: 100%;
}
h5 {
  text-align: left;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
h6 {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
}
p {
  font-size: 36px;
  color: #fff;
  font-weight: 400;
}
a {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  text-decoration: none;
}
a:hover {
  font-weight: 500;
}

.logo {
  transform: scale(0.7);
}

.label {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
}
.headerspace {
  height: 100px;
}
.name {
  display: flex;
  flex-direction: row;
  height: 20%;
  width: 100%;
  box-sizing: border-box;
  padding: 36px;
  align-items: start;
  gap: 10px;
}
.functionlist {
  display: flex;
  height: 60%;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.game-button:hover {
  font-weight: 900;
  letter-spacing: -7px;
}
.web-button:hover {
  font-weight: 200;
}
.visual-button:hover {
  font-weight: 400;
  letter-spacing: 14px;
}
.visual-button,
.web-button,
.game-button {
  transition: letter-spacing 0.3s ease-in-out;
}
.contacts {
  display: flex;
  height: 20%;
  width: 100%;
  padding: 40px;
  justify-content: flex-end;
  box-sizing: border-box;
  align-items: flex-end;
}
.buffer {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.projects {
  box-sizing: border-box;
  display: flex;
  width: 90%;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.tablet {
  width: 80%;
  display: flex;
  align-items: center;
  align-content: center;
  gap: 12px;
  flex: 1 0 0;
  flex-wrap: wrap;
}
.tab-element {
  height: 400px;
  width: 640px;
  display: flex;
  padding: 10px 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 36px;
  opacity: 100%;
  transform: scale(1);
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease, transform 0.4s;
}
.tab-element:hover {
  opacity: 90%;
  transform: scale(0.98);
}
.social-media {
  display: flex;
  align-items: center;
  gap: 30px;
}
.upb::before {
  content: "Наверх";
}
.tg::before {
  content: "telegram";
}
.yt::before {
  content: "YouTube";
}
.boost::before {
  content: "Boosty";
}
.copyr::before {
  content: "© Copyright 2025";
}

@media (max-width: 820px) {
  header {
    padding: 0px 30px;
  }
  h1 {
    font-size: 64px;
  }
  h4 {
    font-size: 48px;
  }
  h6 {
    font-size: 16px;
  }
  .upb::before {
    content: "↑";
  }
  .tab-element {
    height: 270px;
    width: 430px;
  }
}
@media (max-width: 450px) {
  header {
    padding: 0px 30px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 32px;
  }
  h6 {
    font-size: 16px;
  }
  h5 {
    font-size: 12px;
  }
  p {
    font-size: 24px;
  }
  a {
    font-size: 24px;
  }
  .upb::before {
    content: "↑";
  }
  .tg::before {
    content: "TG";
  }
  .yt::before {
    content: "YT";
  }
  .boost::before {
    content: "B";
  }
  .copyr::before {
    content: "©2025";
  }
  .tab-element {
    height: 175px;
    width: 280px;
    p {
      font-size: 16px;
    }
  }
}
