Landing.css 1.09 KB
html, body {
    width: 100vw;
    height: 100vh;
}

body {
    margin: 0;
}

.Landingbg {
    background: url("Landing.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin: 0;
    width: 100vw;
    height: 100vh;
}
.Landingbg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: rgba(0,0,0,0.001);
    box-shadow: inset 100px 100px 250px #000000, inset -100px -100px 250px #000000;
}

.mainTextContainer{
    text-align: center;
    position: relative;
    top: 30%;
}

.mainText {
    color:white;
    z-index: 2;
}

.mainBtnContainer{
    margin: 2rem;
}

.startBtn{
    display: inline-block;
    background: skyblue;
    color: #fff;
    padding: 0.4rem 1.3rem;
    font-size: 1.5rem;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-right: 0.5rem;
    outline: none;
    border-radius: 2px;
    z-index: 3;
}

.startBtn:hover {
    opacity: 0.5;
}