/* Reset default margins */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Layout container: main content + right trim */
.container {
  display: flex;
  height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Main content area */
.content {
  flex: 1;
  padding: 2em;
  font-family: sans-serif;
  color: black; /* adjust if you want a light background */
  background-color: white;
}

/* Side trim on the right */
.side-trim {
  width: 200px;
  background-image: url('images/heaven_or_las_vegas_background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.second-trim {
  width: 200px; /* same width as the first */
  background-image: url('images/heaven_or_las_vegas_background.jpg'); /* change to your image filename */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.third-trim {
  width: 200px; /* same width as the first */
  background-image: url('images/heaven_or_las_vegas_background.jpg'); /* change to your image filename */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fourth-trim {
  width: 200px; /* same width as the first */
  background-image: url('images/heaven_or_las_vegas_background.jpg'); /* change to your image filename */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Heading style */
h1 {
  color: #333;
  margin-top: 0;
}

/* Optional link styling */
a {
  color: #0055cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
