
body{
	margin: 0 auto;
	background-color: #E1E8ED;
	font-family: Arial;
}

nav {
	position: fixed;
	width: 100%;
	top: 0px;
	z-index: 1;	
	background-color: #FFFFFF;
	border-bottom: 1px solid #E1E8ED;
	box-shadow: 0 2px 4px rbg(0,0,0,0,0.5);
}

nav ul {
	list-style-type: none;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	flex: 1 1 auto;
	margin: 0 auto;
	padding: 0;
	height: 50px;
}

@media screen and (max-width: 500px){
	nav li {
		color: #102A43;
		font-size: 14px;
	}
	
}

@media screen and (min-width: 501px) {
	nav li{
		color: #102A43;
		font-size: 20px;
	}
}

nav li a {
	text-decoration: none;
	color: inherit;
	
}

nav li:hover {
	color: grey;
	cursor: pointer;
}

main{
	maring: 0 auto;
	position: relative;
	top: 80px;
	text-align: center;
}


@media screen and (max-width: 500px) {
		
	.all-countries{
		display: grid;
		height: 100%;
		grid-template: 1fr 1fr 1fr / 1fr;
		justify-content: space-around;
		row-gap: 15px;
		column-gap: 35px;
		margin-left: 50px;
		margin-right: 50px;
	}
		
	.single-country {
		background-color: #B0C4DE;
		border: 1px solid rbg(0,0,0,0.05);
		color: #2F4F4F;
		border-radius: 10px;
		padding-left: 30px;
		padding-right: 30px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	
	h2 {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	h3 {
		font-size: 25px;
	}
	
	img {
	    width: 100%;       /* Fill the grid cell width */
	    object-fit: cover; /* Crop if needed without distortion */
	    border-radius: 8px; /* Optional rounded corners */
		margin-bottom: 30px;
	    display: block;
	}
	
	button {
		background-color: #0056B3;
		padding: 8px 35px;
		margin-top: 20px;
		border: 0px solid black;
		border-radius: 5px;
	    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	    transition: box-shadow 0.3s ease;
		margin-bottom: 30px;
		font-size: 18px;
		color: white;
	}
	
	button:hover{
		cursor: pointer;
		background-color: #004494;
		
	}
}

@media screen and (min-width: 500px) {
/*	nav {
		background-color: black;
		border-bottom: 2px solid darkgrey;
	}

	body{
		margin: 0 auto;
		background-color: grey;
		font-family: Arial;
	}*/
	
	.all-countries{
		display: grid;
		height: 100%;
		grid-template: 1fr 1fr 1fr / 1fr 1fr 1fr 1fr 1fr;
		justify-content: space-around;
		row-gap: 15px;
		column-gap: 35px;
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.single-country {
		border: 1px solid rbg(0,0,0,0.05);
		color: #2F4F4F;
	}
	
	button {
		background-color: #0056B3;
		padding: 8px 55px;
		margin-top: 20px;
		border: 0px solid black;
		border-radius: 5px;
	    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	    transition: box-shadow 0.3s ease;
		margin-bottom: 30px;
		font-size: 18px;
		margin-left: 20px;
		margin-right: 20px;
		color:white;
		
	}
	
	button:hover{
		cursor: pointer;
		background-color: #004494;
		
	}
	
	img {
	    width: 100%;       /* Fill the grid cell width */
	    height: 60%;   /* Maintain aspect ratio */
	    object-fit: cover; /* Crop if needed without distortion */
	    border-radius: 8px; /* Optional rounded corners */
	    display: block;
	}
	
}

.single-country h4 {
	font-size: 15px;

}

.toggle_days {
	text-align: right;
}

footer {
	background-color: black;
	color: white;
	position: relative;
	top: 140px;
	text-align: center;
	padding: 3px;
	font-size: 15px;
	border-top: 1px solid lightgrey;
	border-bottom: 1px solid lightgrey;
}






