/*
 Theme Name:   DK Starter
 Theme URI:    https://generatepress.com
 Description:  DK John Digital (GeneratePress child theme)
 Author:       DK John
 Author URI:   https://dkjohn.com
 Template:     generatepress
 Version:      0.1
*/


/* Set the main content area to a minimum of 65vh */
#main {
    min-height: 65vh;
  }
  
  
  /* Site Wrapper to set overall site max width */
  .site-wrapper {
    width: 100%;
    max-width: 1920px;
    background-color: var(--body);
  } 
  
  body {
    background-color: var(--outside-container);
  }
  
  
  /* HELPER CLASSES */
  
  /* Standard Shadow(s) */
  
  .shadow-standard {
    box-shadow: 0px 5px 16px -5px rgba(33, 33, 33, 0.2);
    transition: all .2s ease-in;
  }
  
  .shadow-standard:hover {
    box-shadow: 0px 8px 32px 0px rgba(33, 33, 33, 0.1);
  }
  
  
  /* Margin Auto */
  
  .margin-auto{
    margin-left: auto;
    margin-right: auto;
  }
  

  /* Position Properties */
  
  .relative{
    position: relative;
  }
  
  .absolute{
    position:absolute;
  }
  
  .sticky{
    position: sticky;
    top: 0;
  }
  

  /* Image Aspect Ratios */
  
  img.aspect-1{
    aspect-ratio: 1/1;
    object-fit: cover;
  }