@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html, body {
  background-color: black;
}

html {
  font-size: clamp(8px, 10px + (100vw - 390px) * 0.02, 20px);
}
.main-btn {
  text-decoration: none;
}

.main-btn svg {
  margin-right: 1rem;
}

.main-btn button {
  width: 26.3rem;
  height: 6.7rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 300px;
  outline: none;
  background-color: transparent;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all .2s;
}

.main-btn button:hover {
  border-color: #E93534;
}

.main-btn button:active {
  background-color: #E93534;
  color: black;
}

.rel {
  font-weight: 200;
  margin-left: .5rem;
}

.btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

@media screen and (min-width: 550px) {
  .btns {
    flex-direction: row;
  }

  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }

  .main-btn button {
    width: calc(26.3rem / 2);
    height: calc(6.7rem / 2); 
    font-size: calc(1.5rem / 2); 
    margin-right: 1rem;
    margin-top: 3rem;
  }

  .btntop {
    margin-top: 0!important;
  }

  .icons div {
    width: 20rem!important;
  }

  .icons svg {
    width: 1.6rem!important;
    height: 1.6em!important;
  }
}