/**
 * Theme Name:        Chorical Theme V1
 * Description:       Chorical Wordpress theme inspired by OG Website by Aku
 * Version:           0.0.1
 * Author:            Digits,MystSaphyr,Aku
 * Author URI:        https://chorical.com
 * Tags:              block-patterns, full-site-editing
 * Text Domain:       chorical-theme-v1
 * Domain Path:       /assets/lang
 * Tested up to:      6.9
 * Requires at least: 6.9
 * Requires PHP:      8.0
 */

 body {
    font-family: var( --wp--preset--font-family--primary );
    background-image: url(assets/img/stars-bg.svg);
    background-size: 700px;
    background-attachment: fixed;
    text-rendering: optimizeLegibility;
    font-optical-sizing: auto;
    line-height: 1.8;
    font-size: 18px;
 }

 main {
    width: 75%;
    margin: auto;
 }

 nav {
	font-weight: 600;
 }

  article {
    width: 75%;
    margin: auto;
 }

 .sticky-header {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 100;
 }

 .character-card::before {
   content: "";
   position: absolute;
   background-image: url(assets/img/stars-char.svg);
   opacity: 0.5;
   display: block;
   background-size: 700px;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   box-sizing: border-box;
   overflow: hidden;
   pointer-events: none;
 }

.product-card {
   overflow: hidden;
 }

.post-card {
   overflow: hidden;
 }

.post-banner {
   overflow: hidden;
   box-shadow: 0 2px 28px #4441;
}
.post-banner img {
   border-radius: 24px;
   border: 1px solid rgb(171, 184, 195);
}

.rounded-corners div {
	border-radius: 24px;
}

 @media print,screen and (max-width: 1500px) {
	 main {
    width: 95vw;

 }
}