:root {
    --primary-bg:#100001;
    --primary-text:#FFFFFF;
    --secondary-text:#FAFB63;
    --color-yellow:#E5E900;
    --color-black:#000000;
  }


body{
    margin: 0; 
    padding: 0;
    background-color: var(--primary-bg);
   
 
}

main{
   margin:  0 40px;
   padding: 40px 0;
   height: calc(100vh - 80px);
}
@media (min-width:740px) {
    main{
       margin: 0 80px;
       padding: 80px 0;
       height: calc(100vh - 160px);
    }
   
}
p{
    margin: 0;
    padding: 0;
}
button{
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
    margin: 0;
    padding: 0;
    color: currentColor;
}
.text__spacegrotesk{
    font-family: 'Space Grotesk', sans-serif;
}
.text__lato{
    font-family: 'Lato';
}
.text__14{
font-size: 14px;
}
.text__16{
    font-size: 16px;
}
.text__32{
        font-size: 32px;
}
.text__underline{
    position: relative;
}
.text__underline::before{
    content: " ";
position: absolute;
bottom: 1px;
width: 100%;
height: 1px;
background-color: currentColor;
left: 0;
}
.text__white{
color:var(--primary-text) ;
}
.text__yellow{
    color:var(--secondary-text) ;
    }
.text__uppercase{
    text-transform: uppercase;
}
.header__logo{
    width: 95px;
}
.text__bold{
    font-weight: 700;
}
.text__normal{
font-weight: 400;
}
.text__italic{
    font-style: italic;
}
.content__inner{
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
}
.content__wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  
}
@media (min-width:740px) {
    .content__wrapper{
       gap: 92px;
       justify-content: initial;
    }
   
}
.button{
    background-color: var(--color-black);
    border: 2px solid var(--color-yellow);
    padding: 12px;
    cursor: pointer;
}