@charset "UTF-8";
/* CSS Document */

body {
	padding: 0;
	margin: 0;
	background-color: #e0dbd8;
}

.container {
	width: 100%;
	min-height: 100vh;
	position: relative;
	background-image: url("assets/georgie-cobbs-459520-unsplash.jpg");
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover;	
}

/*---make a basic box ---*/
.box {
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 263px;
	height: 144px;
}

.buttoncontainer{
	padding-top: 10vh;
    text-align: center;
}
.myButton {
	padding-top: 164px;
	background-color:transparent;
	-moz-border-radius:28px;
	-webkit-border-radius:28px;
	border-radius:28px;
	border:1px solid #ffffff;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	padding:16px 31px;
	text-decoration:none;
	transition: all 0.2s ease-in-out;
}
.myButton:hover {
	background-color:rgba(255,255,255,0.30);
}
.myButton:active {
	position:relative;
	top:1px;
}


/* make keyframes that tell the start state and the end state of our object 
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }*/
@keyframes fadeIn { from { opacity:0; transform:translate(0,0)} to { opacity:1; transform:translate(0,0)} }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-out 1;  /* call our keyframe named fadeIn, use animation ease-out and repeat it only 1 time */
  -moz-animation:fadeIn ease-out 1;
  animation:fadeIn ease-out 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;
  transform: translate(0,0);
  
  -webkit-animation-duration:2s;
  -moz-animation-duration:2s;
  animation-duration:2s;
}

.grow { transition: all 1s ease-in-out; }
.grow:hover { transform: scale(1.2); }