html {
  scroll-behavior: smooth;
}

@font-face {
    font-family: 'Benzin';
    src: local('./fonts/Benzin Medium'),
        url('./fonts/Benzin-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
  }

body {
  font-family: "Inter", serif;
  margin: 0;
  padding: 0;
  color: white;
  background-color: black;
  background-image: url('./kraken_img/back.webp');
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

main {
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
  }
  
.container {
  margin-top: 20px;
  padding-top: 20px;
  }
  
header {
    height: 100vh;
    }
  
nav {
  display: flex;
  justify-content: space-between;
  }
  
.card {
  background-color: #000000a6;
  border-radius: 20px;
  border: solid 1px #8080801c;
  padding: 20px;
  margin-top: 40px;
}

.card_main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card_one {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card_two {
  max-width: 400px;
}
  
h1 {
  font-size: 30px;
  text-transform: uppercase;
  }
  
h2 {
  text-transform: uppercase;
  }
  
h3 {
  text-transform: uppercase;
  text-align: left;
  }
 
.main_back {
  width: 100%;
  border-radius: 20px;
}

.text_two {
  border-bottom: solid 1px gray;
  padding-bottom: 10px;
  text-align: left;
}

.foot {
    display: flex;
    }
  
.btn_main {
  background: #fff;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 16px;
  color: #171717;
  position: relative;
  display: flex;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  border: solid 1px #3c3c3c;
  margin-bottom: 20px;
  font-family: 'Benzin';
  transition: transform 0.3s ease;
}

.btn_main:hover {
  background-color: #616161;
  color: white;
  transform: scale(1.1);
  }
  
.btn_text:hover {
  background-color: #616161;
  color: white;
  }
  

.btn_text {
  text-align: center;
  margin-top: 4px;
  margin-left: 20px;
  }
  
.btn_text_position {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

.icon_btn {
  width: 30px;
  height: 30px;
  }
  
.icon_btn_down {
  width: 22px;
  background-color: white;
  border-radius: 50%;
  padding: 6px;
}
  
.btn_position {
  display: flex;
  justify-content: space-around;
  }

.copy {
  text-align: center;
  margin-bottom: 40px;
    margin-top: 80px;
}

.logo_dark {
  max-width: 100px;
  display: flex;
  height: 100%;
}

.qr_text {
    margin-right: 40px;
    }

@media (max-width: 1000px)  {
  .card_main {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}

.card {
  margin-top: 10px;
  }

.card_one {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card_two {
  max-width: 100%;
}

.btn_main {
  background: #fff;
  border-radius: 6px;
  padding: 12px 6px;
  font-size: 14px;
  color: #171717;
  position: relative;
  display: flex;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  border: solid 1px #3c3c3c;
  margin-bottom: 20px;
  font-family: 'Benzin';
  transition: transform 0.3s ease;
}

.btn_text {
  margin-left: 4px;
}

.logo_dark {
  max-width: 71px;
}
}



