@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Rubik:wght@400;500&display=swap');
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body, html {
	background: #263238;
	color: #E0E0E0;
	font-family: 'Rubik', sans-serif;
	font-size: 16px;
	line-height: 1;
}


.wrapper {
	display: flex;
	width: 100%;
	height: 100vh;
	align-items: center;
	justify-content: center;
}

.card-wrapper {
	width: 300px;
	height: 190px;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	background: #212121 url(../images/mc_symbol.png) no-repeat;
	background-position: bottom 10px right 20px;
	background-size: 50px auto;
	position: relative;
}

.card-bank {
	margin-bottom: 20px;
}

.card-number-info {
	font-family: 'Caveat', cursive;
	margin-bottom: 8px;
	font-size: 20px;
	cursor: pointer;
}

.card-number {
	font-size: 20px;
	display: flex;
}

.card-number div {
	margin-right: 10px;
}

.card-holder {
	font-family: 'Rubik', sans-serif;
	position: absolute;
	bottom: 26px;
}
