
/*-------------------------------------- Jumbotron -------------------------------------------*/
.jumbotron{
    background: url("../images/greenhouse.png") no-repeat center center fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.jumbotron:after{
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 1;
    content: "";

}

.jumbotron h1{
    font-size: 90px;
    font-weight: 300;
    color: white;
    margin: 0;
    z-index: 2;
}
.jumbotron h3{
    font-size: 30px;
    font-weight: 200;
    color: white;
    z-index: 2;
    opacity: 0.9;
}

.jumbotron h1,h3{
    -webkit-animation: show 1.2s ease-in-out 0s 1 normal;
    -o-animation: show 1.2s ease-in-out 0s 1 normal;
    animation: show 1.2s ease-in-out 0s 1 normal;
}

@keyframes show {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@-moz-keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@-webkit-keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
/*------------------------------------- About Part -------------------------------------------------*/
.about{
    height: 40vh;
    padding-top: 30px ;
    margin: 20px 0 20px 0;
}
.about p{
    margin:7% 15% 3% 15%
}
.about a{
    margin-bottom: 20px;
    text-decoration: none;
}

footer{
    height: 40px;
    line-height: 40px;
}


