* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
    
}

header {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.main_tw {
  position: absolute;
  max-width: 800px;
  right: 0;
  left: 0;
  display: flex;
  margin: 0 auto;
  z-index: -1;
  top: 232px;
  opacity: 16.9%;
  padding: 10px;
  }

nav {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
  }
  
section {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}



.main_logo {
  max-width: 80px;
  }
  


h1 {
    text-transform: uppercase;
    margin-bottom: 32px;
    }
    
h2 {
  text-align: center;
  margin-top: 46px;
  margin-bottom: 20px;
  }
    
.text_main {
  max-width: 700px;
  padding-bottom: 66px;
  margin: 0 auto;
  text-align: center;
  }
  
.btn_absolute {
  margin-bottom: 100px;
}
  
.btn_main_position {
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.btn_foot_position {
  display: flex;
  justify-content: center;
}

.btn_main {
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border: solid 3px #1e1e1e;
  border-radius: 12px;
  transition: background-color 0.3s;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #974197;
  font-weight: bold;
}

.btn_main:hover {
    background: white; 
    color: #1f1f1f; 
    border: solid 3px white;
}


  
.list_position {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 20px;
}

.list_main {
  padding: 20px;
  border: solid 1px #8000805e;
  border-radius: 10px;
  background-color: #272727;
}

.list_title {
  margin-bottom: 20px;
}

.card_position {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  gap: 40px;
}

.card_main {
  background-color: #272727;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: solid 1px #8000805e;
}

.card_image {
  width: 90px;
  margin-bottom: 20px;
  }
  
.card_title {
  margin-bottom: 20px;
}

.card_text {
  text-align: center;
}

.screen_position {
   display: grid;
  grid-template-columns: auto auto auto auto auto;
  justify-content: space-between;
  gap: 40px;
  }
  
.screen_image {
  width: 200px;
  border-radius: 12px;
}


footer {
  background-color: #1e1e1e;
  }

.foot_text {
color: white;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 60px;
  }
  
.copy {
    padding: 40px;
    width: 100%;
    text-align: center;
    color: white;
}

.mobile_about {
  display: none;
  }

.desc_about {
  display: block;
  }
  
.title_foot {
  color: #ffffff;
  padding-top: 59px;
  text-align: center;
  font-size: 22px;
}

.nick {
  color: purple;
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 1000px) and (min-width: 700px){

.card_position {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-evenly;
  gap: 40px;
}

.screen_position {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-evenly;
  gap: 10px;
}
}

@media (max-width: 700px) {

.screen_image {
  width: 162px;
  border-radius: 12px;
}

.list_position {
  grid-template-columns: auto;
  justify-content: space-between;
  gap: 20px;
}

.list_main {
  padding: 10px;
  }
  
.card_main {
  padding: 10px;
  }

.main_tw {
  position: absolute;
  max-width: 100%;
  }
  
.screen_position {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 10px;
}


.card_position {
  display: grid;
  grid-template-columns: auto;
  justify-content: space-between;
  gap: 40px;
}
  
h1 {
  font-size: 24px;
}

.btn_absolute {
  margin-bottom: 162px;
}
  
section {
  padding: 10px;
}

.foot_text {
  padding: 10px;
  }
}

