body {

    font-family: Arial, sans-serif;
    margin: 60;
    background-color: #fdf4f7;
    color: #333333;
}

header {

    background-color: #f8c8dc;
    padding: 20px;
    text-align: center;
	margin: 0;
}

.holder {
  position: relative;
}

.holder label {
  position: absolute;
  left: 2px;
  top: 2px;
}

.holder input {
  padding: 2px 2px 2px 25px;
}


caption {
	background-color: #f8c8dc;
    padding: 20px;
    text-align: center;
	margin: 0;
}

nav ul {

    list-style-type: none;
    padding: 0;
}

nav ul li {

    display: inline;
    margin: 0 15px;
}

nav ul li a {

    text-decoration: none;
    color: #333333;
    font-weight: bold;
}

nav ul li a:hover {

    color: #ffffff;
}

main {

    padding: 20px;
}

footer {

    background-color: #f8c8dc;
    text-align: center;
    padding: 10px;
    margin-top: 20px;

}

input, select, textarea{
width:100%;
padding:8px;

border:1px solid #a8e6cf;
border-radius:5px;
}

}

input[type="submit"] {
    background-color: #f8c8dc;
    border: none;
    cursor: pointer;

}

input[type="submit"]:hover {
    background-color: #eaaac3;

}

aside {  
            background: silver;
            float: right;
            width: 150px;
            margin-left: 10px;
            margin-right:160px;
            padding: 5px;
          }

table, th, td {
  border:1px solid black;
}

h1{
margin:0;
}

stappen{
padding:20px;
max-width:200px;
margin:auto;
}

.tutorial_container {
  display: flex; /* Enables Flexbox */
  justify-content: flex-start; /* Aligns items to the left */
  gap: 20px; /* Optional: adds space between them */
}
.stappen {
  width: 50%; /* Optional: Splits width equally */
}

.video {
  width: 50%; /* Optional: Splits width equally */
}

.container50 {
  display: flex; /* Enables Flexbox */
  justify-content: flex-start; /* Aligns items to the left */
  gap: 20px; /* Optional: adds space between them */
}
.left {
  width: 50%; /* Optional: Splits width equally */
}

.right {
  width: 50%; /* Optional: Splits width equally */
}


.producten{
display:flex;
justify-content:center;
gap:30px;
padding:40px;
flex-wrap:wrap;
}

.product{
background:white;
border-radius:10px;
width:250px;
text-align:center;
padding:15px;
box-shadow:0 4px 15px rgba(0,0,0,0.1);
transition:transform 0.3s;
}

.product:hover{
transform:scale(1.05);
}

.product img{

width:100%;
border-radius:10px;
height:200px;
object-fit:cover;

}

h2{

color:#ff1493;

}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 80%;
  margin-left: 100px;
  margin-right:5px;
}

td, th {
  border: 1px solid #f8c8dc;
  text-align: center;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #f8c8dc;
}

thead{
background:#f8c8dc;
}

tfoot{
background:#dcedc1;
font-style:italic;
font-weight:bold;
}

footer {
	position: fixed;
    bottom: 0px;
	width: 100%;
}