@import url('https://fonts.googleapis.com/css?family=Merienda|Montserrat');

html {
      font-size: 62.5%;
}

body {
      background-image: url('../img/bg01.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
      margin: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: white;
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem;
      text-align: center;
}

body::before {
      content: "";
      display: block;
      position: absolute;
      z-index: -1;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: #61045f;
      background: -webkit-linear-gradient(bottom, #aa076b, #61045f);
      background: -o-linear-gradient(bottom, #aa076b, #61045f);
      background: -webkit-gradient(linear, left bottom, left top, from(#aa076b), to(#61045f));
      background: linear-gradient(bottom, #aa076b, #61045f);
      opacity: 0.9;
}

body::after {
      content: "";
      display: block;
      position: absolute;
      z-index: -1;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: rgba(0,0,0,0.2);
}

.container {
      padding: 0 1rem;
      max-width: 1200px;
}

h1 {
      font-family: 'Merienda', cursive;
      font-size: 7rem;
      margin-bottom: 2rem;
}

h2 {
      font-size: 2rem;
      line-height: 1.8;
      padding: 0 20rem;
      letter-spacing: 0.5px;
}

.title {
      margin-bottom: 8rem;
}

.content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      text-align: left;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}

.col {
      padding: 0 4.8rem;
}

address {
      font-style: normal;
      line-height: 1.5;
      letter-spacing: 0.5px;
      margin-top: 2rem;
      font-size: 1.6rem;
}

p {
      line-height: 1.5;
      letter-spacing: 0.5px;
      margin: 0;
}

a {
      color: inherit;
      text-decoration: none;
}

.member {
      font-size: 1.6rem;
}


@media (max-width: 1023px) {
      h2 {
            padding: 0 1rem;
      }
}

@media (max-width: 767px) {
      h1 {
            font-size: 3.4rem;
      }

      h2 {
            padding: 0;
            font-size: 1.8rem;
      }

      p {
            font-size: 1.8rem;
      }
      
      .content {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
      }

      .col {
            width: 100%;
            padding: 0;
      }

      .container {
            padding: 0 2rem 2rem;
      }

      .title {
            margin-bottom: 4rem;
      }
}