html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", serif;
  margin: 0;
  padding: 0;
  color: #1e1e1e;
  background-color: white;
  background-image: url('./image/main.png');
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0px!important;
}

.mobile_logo {
  width: 100px;
  height: 100%;
  }
  
.container {
  margin: 60px;
  padding: 50px;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 0px;
  }
  
h1 {
  font-size: 30px;
  color: #1e1e1e;
  margin-bottom: 52px;
  text-align: center;
  }
  
p {
  max-width: 700px;
  margin: 0 auto;
  }
  
.main_logo {
  max-width: 300px;
  display: flex;
  margin: 0 auto;
  }
  
.qr {
  max-width: 300px;
  display: flex;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 40px;
  }
  
.foot {
    display: flex;
    }
    
.card {
  background-color: #ffffffbd;
  border-radius: 10px;
  padding: 10px;
  border: solid 1px #80808036;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  }
  
.card_position {
  display: grid;
  justify-content: space-around;
  grid-template-columns: auto auto;
  gap: 20px;
  margin-top: 40px;
  }
  
.card_but_position {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  }
  
.card_text {
  font-weight: 300;
  font-size: 14px;
  }
  
.btn_main {
  background: #4144ee;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 16px;
  color: rgb(255,255,255);
  position: relative;
  display: flex;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
  border: solid 1px #4144ee;
  margin-bottom: 20px;
  min-width: 240px;
}

.btn_main:hover {
  background-color: #3c3c3c;
  border: solid 1px #3c3c3c;
  }
  
.btn_position_mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  
.btn_main_mobile {
  background: #4144ee;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 16px;
  color: rgb(255,255,255);
  position: relative;
  display: flex;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
  border: solid 1px #4144ee;
}

.btn_main_mobile:hover {
  background-color: #3c3c3c;
  border: solid 1px #3c3c3c;
  }


  
.btn_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  }

.icon_btn {
  width: 30px;
  height: 30px;
  }

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

.logo_qr {
  max-width: 300px;
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.qr_text {
    margin-right: 40px;
    }

@media (max-width: 600px) {

header {
  display: flex;
  justify-content: space-between;
}

.mobile_logo {
  width: 100px;
  height: 100%;
  }

h1 {
  font-size: 34px;
  text-align: center;
}
  
.container {
  margin: 10px;
  padding: 0px;
  }

.main_logo {
  display: none;
  }
  
.card_position {
  grid-template-columns: auto;
  }
  }




