@font-face{
    font-family: 'DINPro-Bold';
    src: url(/css/fonts/DINPro-Bold.otf) format('opentype');
}

@font-face{
    font-family: 'DINPro-Regular';
    src: url(/css/fonts/DINPro-Regular.otf) format('opentype');
}

@font-face{
    font-family: 'Gilroy-Bold';
    src: url(/css/fonts/Gilroy-Bold.ttf) format('truetype');
}

@font-face{
    font-family: 'Gilroy-Extrabold';
    src: url(/css/fonts/Gilroy-Extrabold.ttf) format('truetype');
}

@font-face{
    font-family: 'Gilroy-Regular';
    src: url(/css/fonts/Gilroy-Regular.otf) format('opentype');
}


*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
  }

body{
    background-color: #000000;
    color: #ffffff;
    font-size: 15px; 
    font-family: 'DINPro-Regular', Arial, Helvetica, sans-serif;
}

.wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.brandlogo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 30px;
    cursor: pointer;
}

.header_img img{
width: 100%;
}

.summary{
    margin: 10px;
}

.summary_copy{
    line-height: 175%;
    padding: 10px 0;
}

.how_to{
    margin: 10px;
}

.how_to_heading{
    font-size: 30px;
    font-family:'DINPro-Bold', Arial, Helvetica, sans-serif;
    margin: 10px 0;
}

.details{
    margin: 10px 0;
}

.steps{
    padding: 0 22px;
}

.steps_item{
    padding: 15px 0;
}

.steps a{
    color: #FF8A00;
}

.steps .steps_item::marker{
    font-weight: bold;
    font-family:'DINPro-Bold', Arial, Helvetica, sans-serif;
    color: #FF8A00;
}

.image_steps{
    display: flex;
    justify-content: center;
    align-items: center;
}

.bold{
    font-weight: bold;
}

.cta{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px 30px;
}

.main_cta{
    outline: none;
    background-color: #FF8A00;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    position: relative;
    width: 110px;
    height: 41px;
    cursor: pointer;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
}

.main_cta:hover{
    opacity: 0.8;
}
