* {
  margin: 0;
  padding: 0;
}

body {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #cb6a2f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  height: 100vh;
  position: relative;
}

body .box {
  position: relative;
  text-align: center;
  padding: 30px;
}

body .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 25%;
  height: 3px;
  background-color: #fff;
  transform: translate(-50%, 0);
}

body .box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 25%;
  height: 3px;
  background-color: #fff;
  transform: translate(-50%, 0);
}

body .box h3 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 5px;
}

body .box h1 {
  margin: 0;
  font-size: 2.5rem;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  body .box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px
  }
  
  body .box h1 {
    font-size: 5rem;
  }
}