body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #f8f8f8;
  }
header {
    position: relative;
    width: 100%;
    height: 60px;
    background: #fff;
    border-bottom: 2px solid #333;
  }
  
  .logo {
    height: 50px;
  }
  
  nav {
    position: absolute;
    right: 20px;
    top: 50%;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  nav ul li {
    display: inline-block;
    margin: 0 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    font-weight: bold;
  }

  h2 {
    padding-top: 15px ;
    padding-bottom: 5px
  }

.container {
    position: relative;
    width: 500px;
    height: 300px;
    margin: auto;
}

.room {
    width: 100%;
    height: 100%;
    position: relative;
    transition: background-image 0.5s ease-in-out;
    background-color: white;
}

.livingroom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.buttons {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;  
    grid-template-rows: 1fr 1fr  ;
    padding: 20px;
}


.buttons button {
    margin: 5px;
    padding: 10px;
    cursor: pointer;
    background-color: rgb(178, 178, 178);
    font-size: 16px;
    width: 100px; 
    height: 120px;
}

button img {
    width: 50px;
    margin-right: 10px;
}

.buttons p {
  padding: 10px;
}

section {
  padding-top: 10px ;
  padding-bottom: 40px;
}

h3 {
  padding-bottom: 15px;
}
footer {
  background-color: #010101;
  color: white;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

.buttons button {
  background: linear-gradient(135deg, #f1f1f1, #e0e0e0);
  color: #333; 
  border: 2px solid #ccc;
  border-radius: 12px; 
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}

button img {
  border-radius: 8px;
}

.buttons button:hover {
  background: linear-gradient(135deg, #e0e0e0, #d1d1d1); 
  transform: scale(1.05);
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.2);
}

.buttons button:active {
  transform: scale(0.95);
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.2);
}

section {  
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

section p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

input {
  width: 45%;
  padding: 8px;
  margin: 5px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

input:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

button {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

button:hover {
  background: linear-gradient(135deg, #0056b3, #004494);
  transform: scale(1.05);
}

button:active {
  transform: scale(0.95);
}

#antwoord {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}
