@import url('https://fonts.googleapis.com/css?family=Montserrat|Oswald');
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

h3 {
    font-family: cursive;

}

p {
    font-family: 'Festive', cursive;
}

.image-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

.banner-content {
    position: absolute;
    z-index: 99999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    font-size: 1.5em;
    color: #fff;
    line-height: 1.5;
}

.img-content img {
    width: 100%;
    height: 100vh;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #530473;
    opacity: .8;
    z-index: 999;
    height: 100%;
}

.ban-btn {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
}

.btn-red {
    background-color: red;
}

/* .btn-green {
    border-radius: 50px 0px 50px 0px ;
    background-color: #040229;
    padding: 30px 30px; */
}
.btn-green:hover {
    border-radius: 0px 50px 0px 50px;
    color: rgb(136, 145, 228);
    text-decoration: none;
    box-shadow: -4px 29px 22px -22px rgba(0,0,0,0.96);
    -webkit-box-shadow: -4px 29px 22px -22px rgba(0,0,0,0.96);
    -moz-box-shadow: -4px 29px 22px -22px rgba(0,0,0,0.96);
}