h3{
    letter-spacing: 3px;
}
section a{
    margin: 0 auto;
    padding: 6px 12px;
    text-align: center;
    line-height: 32px;
    letter-spacing: 1px;
    color: #fff;
    background: #65744B;
    transition: all 0.3s;
}
section a:hover{
    opacity: 0.8;
    padding: 12px 18px;
}


section.home{
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    background-image: url(../images/mainVisual.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
h2{
    top: 25%;
    left: 60%;
}
h2::after{
    content: "WebDesigner NiYuMi";
    position: absolute;
    top: -2px;
    right: -2px;
    color: #fff;
}

section.work{
    background-image: url(../images/workBg.png);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position-x: 15%;
    background-position-y: center;
}
section.work div.row{
    margin: 0 auto;
}

section.profile{
    padding: 200px 0;
    background-image: url(../images/profileBg.png);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position-x: 85%;
    background-position-y: center;
}
section.profile div p{
    padding: 2px 3px 4px 10px;
    background: rgba(255, 255, 255, 0.5);
}

section.contact{
    width: 100vw;
    padding: 100px 0;
    background-image: url(../images/contactBg.png);
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
}
section.contact div div{
    margin: auto 0 auto auto;
}
  
@media screen and (max-width: 767px) {
	section.home{
        background-image: url(../images/mainVisualSp.png);
        background-position: 18%;
        background-size: 200%;
    }
    h2{
        top: 20%;
        left: 55%;
    }

    section.work{
        background-position-x: -50%;
        background-size: 50%;
    }
    section.profile{
        background-position-x: 150%;
        background-size: 50%;
    }
    
}