html,
body {
  line-height: 1.55;
  margin-bottom: 1.5rem;
  font-size: 14px;
  font-weight: 400;
  color: #DFE7FF;
  font-family: "inter", sans-serif, -apple-system, blinkmacsystemfont, roboto, ubuntu, "Droid Sans", "Helvetica Neue", arial, sans-serif, "Apple Color Emoji";
}
html {
  height: 100%;
  background-color: #263035;
  background-image: linear-gradient(180deg, rgba(51, 71, 81, 0.9) 0, #0e111c 100%);
  min-height: 480px;
}
html:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -10;
  height: 100%;
  background-color: #263035;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: initial;
  transition: background 0.2s linear;
  background-size: cover;
}
html:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -5;
  background: linear-gradient(180deg, rgba(51, 71, 81, 0.4) 0, #0e111c 100%);
}
.container {
  max-width: 1024px;
  margin: 0 auto;
}
a {
  color: #A6C1FF;
}
h1,
h2 {
  position: relative;
  padding-bottom: 8px;
}
h1:after,
h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #156586d1 0%, #b0c0d7ba 13%, #3756adbd 44%, #445bb3a3 100%);
  background-repeat: no-repeat;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 18px;
}
header:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #156586d1 0%, #b0c0d7ba 13%, #3756adbd 44%, #445bb3a3 100%);
  background-repeat: no-repeat;
}
header h1 {
  padding: 0;
}
header h1:after {
  content: none;
}
header .login {
  text-decoration: none;
  font-size: 30px;
  font-weight: bold;
  color: #dfe7ff;
}
.duo {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: flex-start;
}
.duo .duo-item:last-child {
  min-width: 300px;
}
.desc {
  display: inline-block;
  background: #0b1126ad;
  background-image: radial-gradient(ellipse at 0% 0%, rgba(45, 100, 200, 0.2), transparent 60%), radial-gradient(ellipse at 100% 100%, rgba(55, 120, 220, 0.25), transparent 70%);
  border-radius: 15px;
  max-width: 820px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  padding: 8px 19px;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.desc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(210, 230, 255, 0.9) 0%, rgba(150, 180, 240, 0.6) 35%, rgba(100, 130, 210, 0.45) 65%, rgba(190, 215, 255, 0.85) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.desc h2 {
  padding: 5px 18px;
  border-bottom: 1px solid rgba(140, 180, 255, 0.25);
  margin: 0 -18px 10px -18px;
}
.boost {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 10px;
}
.list-item {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(140, 180, 255, 0.25);
}
.list-item:last-child {
  border-bottom: none;
}
.project-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 12px;
  box-sizing: border-box;
  justify-content: space-between;
}
.project-list .project {
  text-align: center;
  text-decoration: none;
  width: calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 10px;
}
.project-list .project img {
  width: 100%;
  border-radius: 4px;
}
.project-list .project .title {
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .project-list .project {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 724px) {
  .duo {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .project-list .project {
    width: 100%;
  }
}
.page-404 {
  text-align: center;
  font-size: 40px;
  margin: 100px 0px;
}
.page-404 .title-404 {
  font-size: 80px;
  font-weight: bold;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 724px) {
  .page-404 {
    font-size: 28px;
    margin: 50px 0px;
  }
  .page-404 .title-404 {
    font-size: 48px;
  }
}
.tab {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.tab .tab-item {
  font-size: 18px;
  padding: 3px 6px;
  border-top: 1px solid #2b5d7c;
  border-left: 1px solid #2b5d7c;
  border-right: 1px solid #2b5d7c;
  border-radius: 10px 10px 0 0;
}
.tab .tab-item.active {
  background-color: #0a53be;
}
.tab-content {
  display: inline-block;
  background: #0b1126ad;
  background-image: radial-gradient(ellipse at 0% 0%, rgba(45, 100, 200, 0.2), transparent 60%), radial-gradient(ellipse at 100% 100%, rgba(55, 120, 220, 0.25), transparent 70%);
  border-radius: 0 0 10px 10px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  padding: 8px 19px;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.tab-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0 0 10px 10px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(210, 230, 255, 0.9) 0%, rgba(150, 180, 240, 0.6) 35%, rgba(100, 130, 210, 0.45) 65%, rgba(190, 215, 255, 0.85) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.line {
  width: 100%;
  display: flex;
  gap: 25px;
  position: relative;
}
.line .line-element {
  width: 100%;
}
.line label {
  text-align: right;
  font-size: 16px;
  line-height: 22px;
}
.line input[type=text] {
  color: rgba(255, 255, 255, 0.75);
  background-color: transparent;
  border: 1px solid #818181;
  border-radius: 4px;
  font-size: 16px;
  padding: 10px 15px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
/*# sourceMappingURL=style.css.map */