#camera-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    padding: 10px;
}
.camera {
    background-color: transparent;
    border: 2px solid #ccc;
    border-radius: 10px;
    overflow: auto;
    text-align: center;
    text-size-adjust: auto;
}
iframe {
    width: 100%;
    height: 50%;
    border: none;
}
.button {
    border: none;
    color: white;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
  }
  
.button1 {
    background-color: white;
    color: black;
    border: 7px solid #3a00a5;
  }
  
.button1:hover {
    background-color: #c91414cc;
    color: white;
  }
  
.button2 {
    background-color: white;
    color: black;
    border: 2px solid #008CBA;
  }
  
.button2:hover {
    background-color: #008CBA;
    color: white;
  }
  
body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('quiet.jpg');
    background-size: cover;
    background-position: auto;
    color: #000000;
}

header {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content */
    position: relative; /* Allow absolute positioning of the back button */
    border-bottom: 2px solid #ccc;
}