@import url("reset.css");
@import url("layout.css");
@import url("variables.css");
@import url("typography.css");
/* DO NOT EDIT THESE IMPORTS
In order to keep our CSS as manageable as possible, we're starting with multiple separate stylesheets. They are all imported into style.css.

    Do not edit reset.css at all.
    You can minimally edit layout.css to match your specific column/row grid rules. Try to keep all basic structural rules here.
    Optionally, you can set colour variables in variables.css.
    Use typography.css stylesheet to set your general text styles.
    Use style.css for all general UI styles, or anything that you want to overwrite from other stylesheets, because it's loaded last. */

/* Use this stylesheet to add your UI details, and to overwrite layout details for specific instances. */

body {
	margin: 0;
}

/* ------------------Style the header---------------- */
header {
}

img {
	border-radius: 30px;
}

/* ----------Style the navigation----------- */

nav ul {
	list-style-type: none;
}

nav li {
	display: inline;
	padding-left: 1em;
	font-size: 14px;
}

nav a {
	text-decoration: none;
	display: inline-block;
	color: var(--blue);
	font-weight: 600;
}

/* ------------------Sections and pages------------------ */
/* Style any specific sections or pages here */

.img-container {
	position: relative;
	width: 100%;
}

.img-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transition: 0.3s ease;
	border-radius: 30px;
	background-color: rgba(10, 10, 10, 0.85);
}

.img-text {
	color: var(--white);
	font-size: 1.7em;
	font-weight: 700;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.img-container:hover .img-overlay {
	opacity: 1;
}

.img-container:active .img-overlay {
	transform: translateY(2px) scale(1.02);
}

.footer a {
	color: var(--white);
	font-weight: 600;
}

/* //////////////----Responsive layout - Media queries--------//////////// */

/* You can edit the rules inside of these media queries, but you can also edit the breakpoints to work for your own content and design. */

@media (max-width: 600px) {
	/* anything you only want applied at mobile sizes can go here */
}

@media (min-width: 768px) {
	/* anything you want to kick in at small tablet and above can go here */
	nav li {
		padding-left: 2.5em;
		font-size: 16px;
	}
}

@media (min-width: 1080px) {
	/* anything you want to kick in at large tablet and above can go here */
}

@media (min-width: 1300px) {
}
