body {
	background: linear-gradient(-45deg, #aa4b6b, #6b6b83, #3b8d99);
	background-size: 400% 400%;
	animation: gradient 12s ease infinite;
	height: 100vh;
	-webkit-font-smoothing: antialiased;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

#welcome{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90%;
	text-align:center;
}

#welcome h1{    
    color: white;
    font-size: 48px;
}
#welcome h2{    
    color: white;
}

.button{
	background-color: transparent;
    font-weight: bold;
    border-width: 0px;
    border-radius: 0%;
    margin: auto 0px;
    outline: none;
}

#WelcomeHelpModel{
	width: 50%;
}