@charset "utf-8";
/* CSS Document */
body {
	background-image: url("/images/background.jpg");
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat; 
	background-size: cover;
}
.text-center {
    text-align: center !important;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btn {
    width: 95%;
    background: linear-gradient(#bf953f, #fcf6ba, #fbf5b7, #aa771c);
    color: #000 !important;
    border-radius: 30px !important;
    margin: 10px 0 10px 0;
    padding: 5px !important;
    font-weight: 600 !important;
	box-shadow: 0px 10px 10px #000;
    top: 0px;
}
.btn:hover {
	transition-duration: .2s,.15s;
    transition-timing-function: ease-in-out,ease-in-out;
	transition-delay: 0s,0s;
    transition-property: all,transform;
    position: relative;
	box-shadow: 0px 0px 0px #000;
	top: 10px;
}