html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
}

html > * {
  letter-spacing: 0.4px;
  color: white;
  font-family: 'Poppins';
  font-size: 16px;
}

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

p {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

body {
  position: relative;
  border: 0px;
  vertical-align: baseline;
  -ms-overflow-style: none;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100vw;
  background: linear-gradient(180deg, #4c5b8c 0%, #38456a 100%);
  position: relative;
  align-items: center;
}

.main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/background/ellipse_top.svg') no-repeat top left,
    url('assets/background/ellipse_bottom.svg') no-repeat bottom right;
  z-index: 0;
}

.title-section {
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.title-section > img {
  height: 60px;
}

.title-description {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  align-items: center;
  line-height: 10px;
}

.social-section {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  height: 30px;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  z-index: 1;
}

.social-section > a {
  padding-left: 8px;
  padding-right: 8px;
}

.social-section > a > img {
  width: 32px;
  height: 32px;
}

.links-section {
  margin-top: 30px;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  display: inline-flex;
}

.link-container {
  z-index: 0;
  width: 230px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 35px;
  display: inline-flex;
}

.link-icon {
  height: 35px;
  padding-right: 14px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.link-icon-logo {
  width: 140px;
  height: 35px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  display: inline-flex;
}

.link-frame {
  width: 100px;
  align-self: stretch;
  justify-content: flex-end;
  align-items: center;
  gap: 4.66px;
  display: inline-flex;
}

.link-frame > img {
  width: 36.171px;
  height: 34px;
}

.link-frame > div {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 16.95px;
  letter-spacing: 0.75px;
  word-wrap: break-word;
}

.link-frame-logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4.66px;
  text-decoration: none;
}

.link-frame-logo > img {
  width: 36.171px;
  height: 34px;
}

.link-frame-logo > div {
  width: 100px;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 113%;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.qa {
  color: #f6614b;
}

.runtime {
  color: #404980;
}

.python {
  color: #f8ce63;
}

.node {
  color: #295d18;
}

.rails {
  color: #d30001;
}

.footer-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  margin: 4rem;
  margin-bottom: 0;
  padding: 1rem 0rem 2rem 0rem;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  line-height: 13px;
  width: 90%;
  z-index: 1;
  letter-spacing: 0.6px;
}

.grow {
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}

.grow:hover {
  transform: scale(1.01);
}

.grow-big:hover {
  transform: scale(1.1);
}

@media (max-width: 620px) {
  .link-icon > a {
    font-size: 14px;
  }
  .link-icon-logo > a {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .title-description {
    padding: 0px 10px;
  }
  .title-description > p {
    line-height: 20px;
  }
}

@media (max-width: 400px) {
  .link-container {
    width: 65%;
  }
}
@media (max-width: 300px) {
  .title-description > h1 {
    font-size: 15px;
  }
  .title-description > p {
    font-size: 12px;
  }
  .link-icon > a {
    font-size: 12px;
  }
  .link-icon-logo > a {
    font-size: 12px;
  }
  .social-section {
    height: fit-content;
  }
}
