*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;

  outline: 0;

}

html {

  box-sizing: border-box;
  font-size: 62.5%;
}
:root {
  --main-font1:  "Inter", sans-serif;

  --main-font2: "Montserrat", sans-serif;
  --color-bg-general:black;
  --color-tittle:white;




}

body {
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 1rem;





  background-color: var( --color-bg-general);
  color: var(  --color-tittle);
  font-family: var(--main-font1);
  font-style: normal;
  font-size: 1.6rem;


}

main{
  width: 100%;
  padding: 1rem;
  position: relative;

}
a {
  color: var(--color-general);
  text-decoration: none;
  font-weight: 900;
}
ul {
  display: flex;

  font-size: 1.4rem;

  column-gap: 4.3rem;
  list-style-type: none;
  border: none;
}

img {
  width: 100%;
  height: 100%;
  background-size: cover;
}
input,select,textarea {

width: 100%;


padding: 1.5rem;
border-radius: 5rem;
background-color: transparent;
background-color: #242424;
border: none;
color: white;

  font-weight: 400;



}
textarea{
  height: 30rem;
}
input,select{
height: 5rem;
}
input::placeholder{
  color: white;
}
button{
  padding: 1.5rem;
  border-radius: 5rem;
background: #A83A93;
background: linear-gradient(0deg, rgba(168, 58, 147, 1) 0%, rgba(81, 23, 127, 1) 100%);
 border: none;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
}

h4{

  line-height: 2.5rem;
}
h3 {
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--color-red-light);
}

i,a,
select,
label,
button,
input[type="checkbox"],
input[type="color"] {
  cursor: pointer;
}
i{
  font-size: 3rem;
}
/* input[type="text"],input[type="password"],input[type="email"],select,button{
  height: 4rem;
  width: 100%;
} */
input[type="checkbox"]{
width: 2rem;
height: 2rem;
border-radius: 50%;
}
/* .container {
  margin: 0 auto;
  max-width: 150rem;
  width: 100%;
  padding:  1rem;
} */

@media only screen and (max-width: 600px) {

  header{
    order: 1;
  }
}
