html {
    height: 100%;
}

body {
    animation: drop 2s ease;
    font-family: 'Poppins', sans-serif;
    color: white;
    height: 100%;
    background-image: url("img/overlay.png"), -moz-linear-gradient(60deg, rgb(255, 169, 71) 5%, rgba(145, 229, 255, 0.692));
    background-image: url("img/overlay.png"), -webkit-linear-gradient(60deg, rgb(255, 169, 71) 5%, rgba(145, 229, 255, 0.692));
    background-image: url("img/overlay.png"), -ms-linear-gradient(60deg, rgb(255, 169, 71) 5%, rgba(145, 229, 255, 0.692));
    background-image: url("img/overlay.png"), linear-gradient(60deg, rgb(255, 169, 71) 5%, rgba(145, 229, 255, 0.692));
    background-repeat: repeat,			no-repeat,			no-repeat;
    background-size: 100px 100px, cover,				cover;
    background-position: top left,		center center,		bottom center;
    background-attachment: fixed,			fixed,				fixed;
}
.textcenter{
    text-align: center;
}

.container {
    animation: drop 1s ease;
    position: absolute;
    margin: 0;
    width:100%;
    min-height: 600px;
}

.white-box {
    width: 350px;
    height: 500px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(43, 43, 43, 0.9);
    padding: 30px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

img {
    box-shadow: 10px 10px 5px black;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
  }

a.deco-none {
    color:#FFFFFF !important;
    text-decoration:none;

}

.button {
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: #383838;
  color: white;
  border: 2px solid #e0e0e0;
}

@keyframes drop {
	0% {
		opacity: 0;
		transform: translateY(-80px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}
