body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: row;
  height: 100vh;
}

main.homepage {
  background-image: url("/works/web_images/background/tuilleurs.PNG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.text-container {
  text-align: right;
  position: absolute;
  right: 50px; 
  top: 50%;
  width: 20vw;
  transform: translateY(-50%);
  
}

.text-color {
  background: #c1ffcc;
  color: #b0b0b0;
  font-weight: bold;
  /*display: inline-block;*/
  padding: 4px 2px;
  /*margin: 0;*/
}

.portfolio-image {
  max-width: 100%;
  height: auto;
}

.video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 90vw;
  flex-shrink: 0;
}

.video-sq {
  position: relative;
  width: 80vmin;
  height: 80vmin;
  /*max-width: 600px; 
  max-height: 600px; */
}

.video-sq video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

nav {
  width: 200px;
  padding: 20px;
  border-right: 1px solid #ccc;
  flex-shrink: 0;
}

nav a {
  display: block;
  margin-bottom: 10px;
  color: black;
  text-decoration: none;
}

main {
  padding: 40px;
  overflow-y: auto;
  flex-grow: 1;
}
