.home{
    width: 100%;
    height: 100vh;
    background-image: url(../images/meadow.jpg);
    background-size: cover;
    background-position: center;
    margin: 0px;
    padding: 0px;
}

.home-message{
    display: flex;
    position: fixed;
    flex-wrap: nowrap;
    bottom: 50px;
    left: 50px;
    /* font-size: 20px; */
    background: linear-gradient(to left, #696969 40%, #fff 60%);
    background-clip: text;
    background-position: right bottom;
    color: transparent;
    background-size: 400% 100%;
    transition: font-size 1.5s ease 0.1s,background-position 1.5s ease;
}
.home-message:hover{
    background-position:left bottom;
    font-size: 40px;
}
