/* Loading page */


.page-title {
  display: block;
  text-align: center;
  padding-top: 30px;
  width: 70%;
  height: 100px;
  border-radius: 16px;
  background-color: #fff;
  position: relative;
  opacity: 1;
  color: #b31b1b;
  font-size: 40pt;
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.06em;
  margin-top: -20px;
  margin-bottom: 20px;
  margin-left: 15%;
  z-index: 1;
}

.small-page-title {
  display: inline-block;
  text-align: center;
  padding-top: 10px;
  width: 60%;
  height: 50px;
  border-radius: 16px;
  background-color: #fff;
  position: relative;
  opacity: 1;
  color: #b31b1b;
  font-size: 25pt;
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.06em;
  margin-top: -20px;
  margin-bottom: 20px;
  margin-left: 15%;
  z-index: 1;
  text-decoration: none;
}
.small-page-title a:visited, .small-page-title a:hover, .small-page-title a:link{
  text-decoration: none;
  color: #b31b1b;
}


.homepagelink {
  display: inline-block;
  text-align: center;
  padding-top: 2px;
  width: 110px;
  height: 50px;
  border-radius: 16px;
  background-color: #fff;
  position: relative;
  opacity: 1;
  color: #b31b1b;
  font-size: 25pt;
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.06em;
  margin-top: -25px;
  margin-bottom: 25px;
  margin-left: 0;
  z-index: 1;
  text-decoration: none;
  margin-left: 5px;
}
.homepagelink img{
  padding-left:2px;
}

.triangles {
  background-image: url("images/triangles.svg");
  background-size: cover;
  height: 100%;
  bottom: 0;
  left: 0;
  mix-blend-mode: hard-light;
  position: fixed;
  right: 0;
  top: 0;
  background-position: center center;
}

.remove-triangles{
  position: relative;
  z-index: 1;
  text-align: center;
  margin-left: 10%;
}

.remove-triangles-lessmargin{
  position: relative;
  z-index: 1;
  text-align: center;
  margin-left: 0%;
}

body {
  margin: 0;
  padding: 48px 0;
  font-family: "Figtree", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6rem;

  min-height: 100vh;

  top: 0;
  bottom: 0;
  z-index: -1;
  background-color: #b31b1b;
}





article {
  --img-scale: 1.001;
  --title-color: black;
  --link-icon-translate: -20px;
  --link-icon-opacity: 0;
  position: relative;
  border-radius: 16px;
  box-shadow: none;
  background: #fff;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

article a::after {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  cursor: pointer;
  content: "";
}

/* basic article elements styling */
article h2 {
  margin: 0 0 18px 0;
  font-family: "Bebas Neue", cursive;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--title-color);
  transition: color 0.3s ease-out;
}

figure {
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

article img {
  max-width: 100%;
  transform-origin: center;
  transform: scale(var(--img-scale));
  transition: transform 0.4s ease-in-out;
}

.article-body {
  padding: 24px;
}

article a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #28666e;
}

article a:focus {
  outline: 1px dotted #28666e;
}

article a .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  transform: translateX(var(--link-icon-translate));
  opacity: var(--link-icon-opacity);
  transition: all 0.3s;
}

/* using the has() relational pseudo selector to update our custom properties */
article:has(:hover, :focus) {
  --img-scale: 1.1;
  --title-color: #28666e;
  --link-icon-translate: 0;
  --link-icon-opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}


/************************ 
Generic layout (demo looks)
**************************/

*,
*::before,
*::after {
  box-sizing: border-box;
}


.articles {
  display: grid;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 24px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

@media screen and (max-width: 960px) {
  article {
    container: card/inline-size;
  }

  .article-body p {
    display: none;
  }
}

@container card (min-width: 380px) {
  .article-wrapper {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }

  .article-body {
    padding-left: 0;
  }

  figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  figure img {
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}




.page-footer {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 800px;
  height: 150px;
  border-radius: 16px;
  background-color: white;
  opacity: 100%;
  color: #b31b1b;
  font-size: 15pt;
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.06em;

  margin-left: 35%;
}

.footer-text {
  vertical-align: middle;
}

.footer-image {
  padding-top: 20px;
}

.qrcodewrapper {
  text-align: center;
}

.qrcode {
  width: 150px;
}


.iconattdiv{
  text-align: right;
  margin-top:60px;
}
.iconatt{
  position: relative;
  z-index: 1;

  color: black;
}