body {
  background: transparent url(imgs/bg-texture.png) repeat 0px 0px;
  color: #fff;
  font-family: 'Crimson Text', serif;
}

.main-title {
  text-transform: uppercase;
  letter-spacing: 0.8em;
  font-size: 28px;
  margin-bottom: 1em;
  font-weight: 400;
  margin-left: 20px;
}

.main-title strong {
  color: #ECD082;
}

.d-f {
  display: flex;
}

.jc-c {
  justify-content: center;
}

.fd-c {
  flex-direction: column;
}
.ai-c {
  align-items: center;
}

section {
  width: 100%;
  height: 100%;
}

.btn {
  border: 1px solid #ECD082;
  color: #ECD082;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  padding: 1em;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.08s linear;
}

.btn:hover {
  color: #000;
  border-color: #f7ca4e;
  background-color: #f7ca4e;
}

/* Media Query for mobile*/
@media screen and (max-width: 480px) {
  .main-img {
    display: block;
    margin-left: auto;
    margin-right:auto;
    width: 100%;
  }
  .main-title {
    text-align: center;
    font-size: 22px;
    margin: 0 0 20px 15px;
  }
  .btn {
    margin: 10px;
  }
}