html {
	font-family: "Quicksand", sans-serif;
	color: #1f1f21;
	background-color: #fff5ee;
}
h1, h1 a {
	color: #b385dc;
	text-shadow: 2px 2px #c7effb;
	text-align: center;
    text-decoration: none;
}
.product-container {
	font-size: small;
}
.product-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.product-card {
	border-radius: 10px;
	padding: 15px;
	box-shadow: 0px 4px 10px #c7effb;
	background-color: #d0b6eb;
	display: flex;
	flex-direction: column;
}

img {
	width: 100%;
	align-items: center;
}

.img-adult,
.img-kid  {
	height: 150px;
}

a.button:link,
a.button:visited {
	display: flex;
	justify-content: center;
	border-radius: 10px;
	align-items: center;
	background-color: #b385dc;
	font-size: inherit;
	font-weight: bold;
	cursor: pointer;
	align-self: center;
	color: #1f1f21;
	border: 1px solid #c7effb;
	outline: none;
	padding: 20px;
	cursor: pointer;
	text-decoration: none;
}

button {
	border: none;
	cursor: pointer;
	background-size: contain !important;
    background-repeat: no-repeat !important;
	min-height: 50px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

a.link,
a.link:visited,
a.link:hover,
a.link:active {
	text-decoration: none;
	color: blueviolet;
	-webkit-appearance: none;
	text-shadow: 2px 2px mediumaquamarine;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fff5ee;
    margin: auto;
    padding: 0;
    border: 1px solid #c7effb;
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: #b385dc;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: blueviolet;
    text-decoration: none;
    cursor: pointer;
}

.modal-content {padding: 2px 16px;}



@media (min-width: 450px) {
	.product-list {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 768px) {
	.product-list {
		grid-template-columns: 1fr 1fr 1fr;
	}
	body {
		font-size: 9px;
	}
	.detail--name {
		font-size: 13px;
	}
	.detail--description {
		line-height: 17px;
	}
}
@media (min-width: 992px) {
	.product-list {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	}
}
