@charset "utf-8";

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

.first-view-text {
    width: 100%;
    max-width: 1200px;
    padding-left: 40px;
    padding-bottom: 80px;
    color: #ffffff;
    text-shadow: 1px 1px 10px #4b2c14;
}

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

@media (max-width: 800px) {
    .first-view{
        height: calc(100vh - 50px);
        background-image: url(../images/IMG_5566iphone.png);
        align-items: flex-start;
    }
    
    .first-view-text {
        padding-top: 400px;
        padding-left: 20px;
    }

    .first-view-text h1 {
        font-size: 26px;
    }

    .first-view-text p {
        font-size: 10px;
        margin-left: 3px;
    }
}