@font-face {
    font-family: 'AdiHaus';
    src: url('https://assets.codepen.io/6060109/adihaus_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "AdiHaus";
    src: url("https://assets.codepen.io/6060109/adihaus_bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

html, body {
    background-color: var(--theme-color-white);
    font-family: "AdiHaus";

}

.text-info h2{
  font-size: 70px;
  text-transform: uppercase;
}

.colored-text{
    color: #cd3a24;
}
.text-blakished{
    color: #423a3a;
    font-weight: bold;
    color: #423a3a;
    letter-spacing: 5px;
}
.text-blakished-1{
    color: #423a3a;
}


.container{
    width: 1140px;
    margin: auto;
}

.w-80{
    width: 80%;
}
.email-input{
    line-height: 30px;
    padding: 10px;
}

.email-submit{
    background-color: #000;
    border-bottom: 1px solid var(--theme-color-black);
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    opacity: 1;
    border: none;
    padding: 10px;
  
}

@media only screen and (max-width: 575px) {


    .container{
        width: 100%;
    }
    .text-info h2 {
        font-size: 40px;
        text-transform: uppercase;
    }
      
  
}

