/*!
Theme Name: Rominger GmbH Test Theme
Theme URI: https://www.juergenhuettner.com
Author: Juergen Huettner
Author URI: https://www.juergenhuettner.com
Description: Theme for rominger.test
Version: 1.0
*/

/*
Usage:

h1 {
  font-size: 10px;

  @include tablet {
    font-size: 12px;
  }

  @include desktop {
    font-size: 20px;
  }
}

 */

/*
You need two HTML elements to make the aspect ratio mixin work. Both need to be either a block or an inline-block element.

<div class="outer-box">
   <div class="inner-box"></div>
</div>

In the SCSS, you need to define the aspect ratio within the arguments of the mixin and add the mixin to the outer element.

.outer-box {
  @include aspect-ratio(4, 3);
}
*/