@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap');

*{font-family: 'Roboto Condensed', sans-serif; font-weight: 700; margin: 0; padding: 0; box-sizing: border-box;}

body{background-color: #fff; padding: 30px 10px;}
body *::-webkit-scrollbar{width: 0;}
body *::-webkit-scrollbar-track{background-color: transparent; border-radius: 0;}
body *::-webkit-scrollbar-thumb{background-color: transparent; border-radius: 0;}

.wrap{
    max-width: 1000px;
    height: 100%;
    margin: 0 auto 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.wrap img{width: 300px; height: auto; margin: 0 0 30px 0;}
.wrap h1{
    font-size: 34px;
    line-height: 34px;
    color: #843c03;
    text-align: center;
}
.wrap h2{
    width: 100%;
    max-width: 550px;
    font-size: 24px;
    line-height: 30px;
    color: #843c03;
    text-align: center;
    border-top: 1px dashed #d9c9bd;
    padding: 25px 0 0 0;
    margin: 25px 0 5px 0;
}
.wrap h3{
    font-size: 18px;
    line-height: 30px;
    color: #843c03;
    text-align: center;
}
.wrap h4{
    width: 100%;
    max-width: 550px;
    font-size: 18px;
    line-height: 30px;
    color: #843c03;
    text-align: center;
    border-top: 1px dashed #d9c9bd;
    padding: 25px 0 0 0;
    margin: 25px 0 0 0;
}

@media(max-width: 767px){
    .wrap img{width: 150px;}
    .wrap h1{
        width: 200px;
        font-size: 24px;
        line-height: 30px;
    }
    .wrap h2{font-size: 20px;}
    .wrap h3{font-size: 16px; line-height: 24px;}
    .wrap h4{font-size: 16px; line-height: 24px;}
}
