/*
Theme Name: Dynamic Gallery Portfolio
Version: 1.0
Description: Dynamic Gallery Portfolio Theme
Author: Caspar Brauckmann
*/

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'ScalaSans';
    color: #333;
    background-color: #f8f8f8;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  main {
    max-width: 1200px;
    flex-grow: 1;
    margin: 0 auto;
  }
  .responsive-embed-container {
    position: relative;
    display: block;
    overflow: hidden;
    height: 0;
    max-width: 1200px !important;
  }
  .embed-responsive-16by9 {
      padding-bottom: 56.25%;
    aspect-ratio: 16 / 9;
  }
  .responsive-embed-container iframe, .responsive-embed-container object, .responsive-embed-container embed {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }