body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.section {
    background-image: url('../images/image.jpg');
    background-size: cover;
    background-position: center;
}
.container {
    width: 90%;
    max-width: 1140px;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
.heading {
    font-size: 34px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
h1 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 35px;
}
.button {
    font-size: 16px;
    letter-spacing: 6px;
    color: #ffffff;
    border: solid 1px #ffffff;
    border-radius: 30px;
    display: inline-block;
    padding: 16px 70px 18px;
    margin-bottom: 40px;
    transition: 0.3s;
}
.button:hover {
    opacity: 0.6;
}
@media screen and (max-width: 767px) {
    .heading {
        font-size: 18px;
        margin-bottom: 12px;
    }
    h1 {
        font-size: 27px;
        margin-bottom: 24px;
    }
    .button {
        font-size: 14px;
        padding: 10px 48px 12px;
    }
}
    
