html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  background-color: rgba(36, 36, 41);
}

* {
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

button,
div,
span {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

input::selection,
textarea::selection {
  background: rgba(152, 166, 227);
}

p,
input {
  font-family: "Inter";
  margin: 0px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(152, 166, 227);
  border-radius: 12px;
}

.wrapper {
  display: flex;
  height: 100%;
  max-height: 100vh;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter.ttf") format("truetype");
}

.blue {
  color: rgba(152, 166, 227);
}

.white {
  color: rgb(255, 255, 255);
}

.gray {
  color: rgb(123, 124, 127);
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 80px;
  color: white;
  margin-top: 100px;
  padding: 0 16px;
  text-align: center;
}

.head-info {
  font-size: 24px;
  margin-bottom: 24px;
}

.head-text {
  font-size: 20px;
  width: 700px;
  max-width: 100%;
  text-align: center;
}

.screenshots {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  padding: 0 16px;
}

.screen {
  border: 3px solid rgb(123, 124, 127);
  border-radius: 12px;
  height: 450px;
  max-width: 100%;
  box-sizing: border-box;
}

.accounts {
  width: 100%;
  max-width: 100%;
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding: 0 16px;
  justify-content: center;
}

.box {
  height: auto;
  width: 560px;
  max-width: 100%;
  border-radius: 12px;
  background-color: rgb(47, 50, 55);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 36px;
  color: white;
}

.box-head-headline {
  font-size: 24px;
  font-weight: 700;
}

.box-head-headline-two {
  font-size: 14px;
}

.box-text {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.box-item {
  display: flex;
  align-items: center;
  gap: 6px;

  color: rgb(123, 124, 127);
}

.svg-checkmark {
  height: 20px;
  flex-shrink: 0;
}

.buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  gap: 24px;
  padding: 0 16px;
}

.button {
  width: 200px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(47, 50, 55);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;

  transition: transform 0.3s ease;
}

.button:hover {
  transform: scale(1.1);
}

.b-button {
  background-color: rgba(152, 166, 227);
}

.g-button {
  color: white;
  border: 2px solid rgb(47, 50, 55);
}

footer {
  height: auto;
  min-height: 100px;
  width: 100%;
  margin-top: 48px;
  padding: 24px 16px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: rgb(47, 50, 55);
  border-radius: 12px;
  gap: 24px;
  row-gap: 12px;
  text-align: center;
}

footer > div {
  cursor: pointer;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  header {
    font-size: 36px;
    margin-top: 40px;
    padding: 0 20px;
  }

  .head-info {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .head-text {
    font-size: 15px;
    width: 100%;
  }

  .screenshots {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 0 20px;
  }

  .screen {
    height: auto;
    width: 100%;
    max-width: 100%;
  }

  .buttons {
    flex-direction: column;
    margin-top: 32px;
    gap: 16px;
    padding: 0 20px;
  }

  .button {
    width: 100%;
  }

  .accounts {
    flex-direction: column;
    margin-top: 32px;
    gap: 20px;
    padding: 0 20px;
  }

  .box {
    width: 100%;
    padding: 20px;
  }

  .box-head-headline {
    font-size: 20px;
  }

  footer {
    height: auto;
    flex-direction: row;
    padding: 20px;
    gap: 12px;
    text-align: center;
    margin-top: 32px;
  }
}