
  h5{
    text-align:center;
    
    font-size:1.5rem;
    
    color:rgb(240, 198, 11);
    font-family: 'trajan', cursive;
    animation-name:glow;
    animation-duration:1.5s;
    animation-iteration-count:infinite;
    animation-direction:alternate;
  }
  
  @keyframes glow{
    from{text-shadow:0px 0px 5px #ffffff,0px 0px 5px #ffffff;}
    to{text-shadow:0px 0px 20px #ffffff,0px 0px 20px #ffffff;}
  }











  @layer demo, countdown;

@layer countdown{
  .countdown {
    width: fit-content;
    display: inline-grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 1rem;
  }
  .countdown > .part {
    display: grid;
    gap: 1rem;
    
  }
  .countdown > .part > .number {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid hsl(0 0% 50% / .5);
    font-size: 1rem;
    position: relative;
   
    
  }
  .countdown > .part.dias { --num: 365 }
  .countdown > .part.horas { --num: 24 }
  .countdown > .part:where(.minutos, .segundos) { --num: 60 }
  .countdown > .part > .number::after{
    content: "";
    position: absolute;
    inset: calc(var(--border-size) * -0.5);
    border-radius: inherit;

    --degree: calc(360deg / var(--num) * (var(--num) - var(--value,0)));
    background-image: conic-gradient(var(--accent) var(--degree), transparent calc(var(--degree) + 0.1deg));

    --border-size: 4px;  
    --mask-image: radial-gradient(100% 100%, transparent calc(50% - var(--border-size)), black calc(50% - var(--border-size) + 1px));
    -webkit-mask-image: var(--mask-image);
    mask-image: var(--mask-image);
  }
  .countdown > .part > .text {
    text-align: center;
    opacity: 0.75
  }
}
@layer demo {
  * { box-sizing: border-box }
 
}





.jukebox {
  position: relative;
  background-color: transparent;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container ul {
  display: none;
  list-style: none;
  background: rgb(0, 0, 0);
  position: absolute;
  top: 0px;
  left: 2rem;
}

.image-container:hover ul {
  display: inline-block;
}
.image-container li {
  cursor: pointer;
}
.image-container li:hover {
  background: rgb(159, 32, 163);
}




.blog-card {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.6%;
  background: #fff;
  line-height: 1.4;
  font-family: sans-serif;
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
}
.blog-card a {
  color: inherit;
}
.blog-card a:hover {
  color: #5ad67d;
}
.blog-card:hover .photo {
  transform: scale(1.3) rotate(3deg);
}
.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}
.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}
.blog-card .details,
.blog-card .details ul {
  margin: auto;
  padding: 0;
  list-style: none;
}
.blog-card .details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  margin: auto;
  transition: left 0.2s;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  width: 100%;
  font-size: 0.9rem;
}
.blog-card .details a {
  -webkit-text-decoration: dotted underline;
          text-decoration: dotted underline;
}
.blog-card .details ul li {
  display: inline-block;
}
.blog-card .details .author:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "";
}
.blog-card .details .date:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "";
}
.blog-card .details .tags ul:before {
  font-family: FontAwesome;
  content: "";
  margin-right: 10px;
}
.blog-card .details .tags li {
  margin-right: 2px;
}
.blog-card .details .tags li:first-child {
  margin-left: -4px;
}
.blog-card .description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}
.blog-card .description h1,
.blog-card .description h2 {
  font-family: Poppins, sans-serif;
}
.blog-card .description h1 {
  line-height: 1;
  margin: 0;
  font-size: 1.7rem;
}
.blog-card .description h2 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-top: 5px;
}
.blog-card .description .read-more {
  text-align: right;
}
.blog-card .description .read-more a {
  color: #5ad67d;
  display: inline-block;
  position: relative;
}
.blog-card .description .read-more a:after {
  content: "";
  font-family: FontAwesome;
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition: margin 0.3s, opacity 0.3s;
}
.blog-card .description .read-more a:hover:after {
  margin-left: 5px;
  opacity: 1;
}
.blog-card p {
  position: relative;
  margin: 1rem 0 0;
}
.blog-card p:first-of-type {
  margin-top: 1.25rem;
}
.blog-card p:first-of-type:before {
  content: "";
  position: absolute;
  height: 5px;
  background: #5ad67d;
  width: 35px;
  top: -0.75rem;
  border-radius: 3px;
}
.blog-card:hover .details {
  left: 0%;
}
@media (min-width: 640px) {
  .blog-card {
    flex-direction: row;
    max-width: 700px;
  }
  .blog-card .meta {
    flex-basis: 40%;
    height: auto;
  }
  .blog-card .description {
    flex-basis: 60%;
  }
  .blog-card .description:before {
    transform: skewX(-3deg);
    content: "";
    background: #fff;
    width: 30px;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .blog-card.alt {
    flex-direction: row-reverse;
  }
  .blog-card.alt .description:before {
    left: inherit;
    right: -10px;
    transform: skew(3deg);
  }
  .blog-card.alt .details {
    padding-left: 25px;
  }
}













.clerk{
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: rgb(159, 32, 163);
  font-size: 2em;
  border: rgb(159, 32, 163) 0.095em solid;
  border-radius: 0.2em;
  padding: 0.1em 0.5em;
  
  text-shadow: 
    0 0 0.03em white,
    0 0 0.17em currentColor;

  box-shadow: inset 0 0 0.3em 0 rgb(159, 32, 163), 
                    0 0 0.4em 0 rgb(159, 32, 163);
  
  position: relative;
  transition: background-color 200ms linear;
}

.clerk::before {
  pointer-events: none;
  content: "";
  position: absolute;
  background: rgb(159, 32, 163);
  top: 130%;
  width: 100%;
  left: 0;
  height: 100%;
  
  transform: perspective(1em) rotateX(40deg)
    scale(1, 0.35);
  filter: blur(1em);
 
  opacity: 0.7;
  transition: opacity 200ms linear;
  
}

.clerk::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 1em 0.1em rgb(159, 32, 163);
  opacity: 0;
  transition: opacity 250ms linear;
}

.clerk:hover,
.clerk:focus{
  text-shadow: 
    0 0 0.03em white,
    0 0 0.27em currentColor;
 
}

.clerk:hover::after{
  opacity: 1;
}

.clerk:hover::before{
  opacity: 1;
}

header {
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)), url(../img/h11.jpeg); 
	background-size: cover; 
	background-position: center right;
        height:  100vh;
	position: relative;
}
@media screen and (max-width: 768px) {
	header {
		background-image:  url(../img/vertical.jpg); 
	
       
		position: relative;
		background-position:center;background-size:cover;background-repeat: no-repeat;
    background-color: black;
	}
  }

  .krone img { max-width: 880px;margin-top: 20%;}
.krone, .subtitle, .godsave-logo {
	width: 60%;
	max-width: 880px; 
	
	padding: 70%px 0;
	text-align: center;
	text-transform: uppercase;
}

@media screen and (max-width: 768px) { 
.krone img { max-width: 880px;margin-top: 20%;visibility: hidden;}
.godsave-logo  {  max-width: 580px; width: 86%; ;background-position: center;} 
.godsave-logo {margin-top: 20%;}
.subtitle h1 {
  margin: 9.2rem auto;
}

}
.subtitle, .godsave-logo {visibility: hidden;}