@charset "utf-8";
/* CSS Document */

@import url("../Web_Design/wooten_kiana_GoogleFontsAnchor.html");
	
body{
	background-image: url("../pics/horoscope-7482785_1280.jpg")
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}

.card{
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	background:#8548C8;
	font-size: 3rem;
	color: aquamarine;
	box-shadow: yellow;
	height: 100%;
	width:100%;
	border-radius: 4px;
	transition: all 500ms;
	overflow: hidden;
	
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.card:hover{
	box-shadow: white;
	transform: translateY(-3px)scale(1.1);
}