/* Mijn bron voor alles was www.w3schools.com*/

/* Mijn body*/
body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	background-color: #0b1f3a;
	color: white;
    background-image: url("img/seoulblossom.jpg");
    background-size: cover;
	background-position: center;
}
/*Voor mijn headers*/
.header {
	background-color: #08162b;
	padding: 20px 0;
	text-align: center;
        }
.header h1 {
	font-size: 28px;
	letter-spacing: 1px;
}
	/*mijn navigatie menu*/

.menu {
	background-color: #123c73;
	padding: 15px 0;
	gap: 40px;
	text-align: center;
		}

.menu a {
	color: white;
	text-decoration: none;
	margin: 15px;
	font-weight: bold;
        }

.menu a:hover {
	text-decoration: underline;
              }
.hero {
	background-image: url("../img/seoulblossom.jpg");
	background-size: cover;
	background-position: center;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
      }

.hero-text {
	background-color:rgba(0, 0, 50, 0.6);
	padding: 30px;
	border-radius: 10px;
        }
.hero-text h2 {
	font-size: 40px;
     }
.hero-text p {
		font-size: 18px;
		margin-top: 10px;
           }

.container {
	background-color: white;
	color: black;
	padding: 30px;
}
	
.cards {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
 /*mijn 3 kaarten bewerken*/
.card {
	background-color: #f2f2f2;
	width: 30%;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	padding-bottom: 20px;
}
		
.card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.card h3 {
	margin: 15px 0;
}
	
.card p {
	padding: 0 15px;
	font-size: 14px;
}
/*Voor mijn knoppen*/
.button {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 20px;
	background-color: #102c54;
	color: white;
	text-decoration: none;
	border-radius: 5px;
}

.button:hover {
background-color: #08162b;
}

.content {color:
	padding: 20px;
	background-color: #0F52BA;
	color: lightgrey;	
}
/*Voor mijn footer*/
.footer {
	background-color: #08162b;
	padding: 10px;
	text-align: center;
}
/*Voor mijn tabellen*/	
.td, th {
	padding: 10px;
	color: lightblue;
	border: 1px #ADD8E6;
}

.th {
	background-color: #0b2a59;
	color: white;	
}
/* Voor mijn video's*/
.video {
	border: none;
	display: block;
	margin: 30px auto;
}
/*Voor mijn tabellen*/
.table {
	border: 1px babyblue;
	border-collapse: collapse;
}

.caption {
	font-weight: bold;
	margin-bottom: 10px;
}