*{
    box-sizing:border-box;
}
body{
background: #ffffff;
background: linear-gradient(to bottom, #ffffff 0%,#e1e8ed 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e1e8ed',GradientType=0 );
    height: 100%;
        margin: 0;
        background-repeat: no-repeat;
        background-attachment: fixed;
    
}

.wrapper-1{
    width:100%;
    height:100vh;
    display: flex;
    flex-direction: column;
}
.wrapper-2{
    padding :30px;
    text-align:center;
}
h1{
    font-size:4em;
    letter-spacing:3px;
    color:#03b100 ;
    margin:0;
    margin-bottom:20px;
    line-height: 100%;
    padding-bottom: 20px;
}
.wrapper-2 p{
    margin:0;
    font-size:1.3em;
    color:#aaa;
    font-family: 'Poppins', sans-serif;
    letter-spacing:1px;
}
#go-home{
    color:#03b100;
    background:none;
    border:none;
    padding:10px 50px;
    margin:30px 0;
    border-radius:30px;
    text-transform:capitalize;
    box-shadow: 0 10px 16px 1px lightgray;
    border: 2px solid #03b100;
    cursor: pointer;
}
#go-home:hover {
    background: #03b100;
}
#go-home a {
    color: #03b100;
}
a:hover #go-home{
    color: #fff !important;
}
.footer-like{
    margin-top: auto; 
    background:#D7E6FE;
    padding:6px;
    text-align:center;
}
.footer-like p{
    margin:0;
    padding:4px;
    color:#03b100;
    font-family: 'Poppins', sans-serif;
    letter-spacing:1px;
}
.footer-like p a{
    text-decoration:none;
    color:#03b100;
    font-weight:600;
}

@media (min-width:360px){
    h1{
    font-size:4.5em;
    }
    .go-home{
    margin-bottom:20px;
    }
}

@media (min-width:600px){
    .content{
        max-width:1000px;
        margin:0 auto;
    }
    .wrapper-1{
        height: initial;
        max-width:620px;
        margin:0 auto;
        margin-top:50px;
        box-shadow: 4px 8px 40px 8px lightgray;
    }
}