body{
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  color: #fff;
}
.header-wrapper {
  background-image: url("images/bg.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
img{
  display: block;
  max-width: 100%;
  height: auto;
}
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.logo-img-wrapper {
  width: 200px;
  height: 180px;
}

h1 {
  font-size: 63px;
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase;
  margin-bottom: 15px;
}
a{
  transition: all 300ms ease-in-out 0ms;
  text-decoration: none;
  color: #fff;
}
a:hover, a:focus{
  color: #ccc
}
.title-paragraph {
  font-size: 26px;
  color: #fff;
}

.title-paragraph::after {
  content: "";
  width: 100%;
  height: 1px;
  opacity: 0.3;
  background-color: #e3e8eb;
  position: relative;
  display: inline-block;
  margin-top: 50px;
}

.paragraph-text-wrapper {
  padding-top: 40px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 36px;
}
p {
  margin: 0;
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
  .title-paragraph{
    font-size: 20px;
  }
}