@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}


header{
  background-color: #383235;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 8px solid #FFA24D;
}

header img{
  height: 120px;
}

#main{
  width: 900px;
  padding: 50px;
  height: 100%;
  margin: auto;
}
#main img{
  width: 100%;
  margin: auto;
}
h1{
  color: #0c0c0c;
  font-size: 64px;
  /* margin: auto; */
  padding-bottom: 16px;
  width: 600px;
}
hr{
  color: #e7e7e7;
  opacity: 0.3;
  border-radius: 50%;
  margin-bottom: 16px;
}
h2{
  color: #0e0e0e;
  font-size: 32px;
  padding: 32px 0;
}
p{
  color: #2b2b2b;
  font-size: 24px;
  line-height: 40px;
}