@charset "utf-8";

.first-view {
    height: calc(100vh - 100px);
    background-image: url(../images/first-view.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    align-items: center;
    display: flex;
}

.first-view-text {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 10px #4b2c14;
}

.first-view-text h1 {
    font-family: 'Monteserrat', sans-serif;
    font-size: 56px;
    line-height: 72px;
}

.first-view-text p {
    font-size: 20px;
    margin-top: 20px;
}

.first-view-text a {
    max-width: 20px;
}

.first-read{
    height: auto;
    text-align: center;
    margin-bottom: 50px;
}

.first-read h1 {
    margin-top: 30px;
    font-size: 50px;
}

.first-read div {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.first-read div img{
    width: 20%;
    height: auto;
    text-align: center;
}

.first-read h2 {
    font-size: 35px;
}

.first-read p {
    margin-top: 50px;
    font-size: 25px;
    line-height: 35px;
}

.button {
    align-items: center;
}

@media (max-width: 767px) {
    
    .first-view {
        background-color: rgb(208, 255, 239);
        background-image: none;
        height: calc(100vh - 50px);
        align-items: self-start;
    }
    
    .first-view-text {
        padding-top: 60px;
        padding-left: 20px;
    }

    .first-view-text h1 {
        font-size: 30px;
        line-height: 48px;
    }

    .first-view-text p {
        font-size: 20px;
        margin-top: 15px;
    }

    .first-read {
        height: auto;
    }

    .first-read h1 {
        font-size: 200%;
    }
    
    .first-read h2 {
        margin-top: 20px;
        font-size: 100%;
    }

    .first-read p {
        margin-top: 20px;
        font-size: 90%;
    }

    .first-read li {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .first-read li img {
        width: 40%;
    }

    .button {
        max-width: 100%;
    }

    .button a img {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
