* {
	box-sizing: border-box;
	text-align: center;
	font-family: 'Kalam', cursive;
}
html{
	height: 100vh;
}
.wrap{
	margin: 0 auto;
	padding-left: 1%;
	padding-right: 1%;
	max-width: 960px;
	padding-top: 1%;
	padding-bottom: 1%;
}
body{
	background-image: url("../images/bg2.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: bottom;
	background-blend-mode: overlay;

}
table {
  table-layout: fixed ;
  width: 100% ;
}
td {
  width: 50% ;
}

menu {
	background-color: transparent;
	padding-top: 2px;
	height: 90%;
}
strong{
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
}
header {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-weight: bold;
	background-color: red;
	color: black;
	padding-top: 1%;
	padding-bottom: 1%;
}
.cards {
    display: grid;
    grid-gap: 1rem;
}
.card {
    height: 4rem;
}
.card:active {
	position: relative;
	top:1px;
}
.dress {
	display: flex;
}
.code {
	flex: 50%;	
}
p   {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
}
a   {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	text-decoration: underline;
}
#count {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
}
.text{
	position: relative;
	background-color: rgba(255, 255, 255);
	background-color: rgba(255, 255, 255, 0.85); 
	padding: 20px;
	border: solid;
	border-color: black;
	border-radius: 15px;
	font-size: large;
}
.pic{
	width: 100%;
}
@media (min-width: 600px) {
    .cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.code {
		width: 100%;
	}
	.photo {
		width: 20%;
	}
}
@media (min-width: 900px) {
	.cards {
		grid-template-columns: repeat(4, 1fr);
	}
	.photo {
		widows: 100%;
	}
}
footer{
	position:fixed;
	bottom: 2px;
	right: 2px;
	background-color: #ffffff;
	background-color: #ffffff9d; 
	padding: 1px;
	border: solid;
	border-color: black;
	border-radius: 15px;
}