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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input,
textarea,
button,
select,
label,
a {
  -webkit-tap-highlight-color: transparent;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
  background-color: black;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: white;
  background-color: black;
  background-color: hsl(0, 0%, 5%);
  line-height: 1.7em;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
}

a {
  color: dodgerblue;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.textfield {
  width: 100%;
}

#container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  background-color: hsl(0, 0%, 5%);
}

footer {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background-color: #333;
}

section {
  outline: solid 1px rgb(51, 220, 161);
  border-radius: 10px;
  color: white;
  padding: 3em;
  margin: 2em 0;
}

.blurbg {
  background-color: #111;
  border-radius: 10px;
  color: white;
  margin: 2em 0;
  overflow: hidden;
  position: relative;
  background-image: url("../../images/post-pic-1-thumb.jpg");
  background-position: center;
  background-size: cover;
  background-size: 100%;
  transition: background-size 0.5s ease-in-out;
  transition: background-size 1s ease-in-out;
}
.blurbg:hover {
  background-size: 110%;
}
.blurbg .blurdiv {
  position: absolute;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.blurbg .bgshape {
  position: absolute;
  left: -50%;
  top: 0px;
  font-size: 100em;
  color: #333;
  color: #12cb78;
}
.blurbg .content {
  position: relative;
  padding: 3em;
}

#naviCont {
  display: flex;
  justify-content: space-between;
  place-items: center;
  width: 100%;
}
#naviCont .naviLogo {
  width: 60px;
  margin-top: -0.5em;
}

nav ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
nav li {
  color: #fff;
  display: block;
  float: left;
  padding: 1em 2em;
  position: relative;
  text-decoration: none;
  transition-duration: 0.5s;
}
nav li a {
  color: #fff;
}
nav li:hover,
nav li:focus-within {
  background: #222;
  border-radius: 5px;
  cursor: pointer;
}
nav li:focus-within a {
  outline: none;
}
nav ul li ul {
  border-radius: 5px;
  background: orange;
  visibility: hidden;
  opacity: 0;
  min-width: 5rem;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 1rem;
  left: 0;
  display: none;
}
nav ul li:hover > ul,
nav ul li:focus-within > ul,
nav ul li ul:hover,
nav ul li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block;
}
nav ul li ul li {
  clear: both;
  width: 100%;
}

.langSelectNavi {
  display: flex;
  gap: 10px;
}

.langSelectFlag {
  width: 30px;
  border-radius: 4px;
}

.postCardCont {
  width: 100%;
  padding: 1rem;
  background-color: #1a1a1a;
  border-radius: 10px;
}
.postCardCont .postCardContTitle {
  color: #f0f0f0;
  margin-bottom: 0.5em;
}
.postCardCont .postCardList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.postCardCont .postCardList a {
  text-decoration: none;
  z-index: 1;
}
.postCardCont .postCardList > a .content {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  aspect-ratio: 5/3;
  max-height: 300px;
  border-radius: 10px;
  padding: 1.5em;
  font-size: 2em;
}
.postCardCont .postCardList > a .content:hover .contentBg {
  opacity: 0.4;
  opacity: 0.6;
  background-size: 125%;
}
.postCardCont .postCardList .contentBg {
  background-image: url("../../images/post-pic-1-thumb.jpg");
  background-size: 120%;
  background-position: center;
  opacity: 0.25;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  transition: opacity 0.25s ease-in-out, background-size 0.25s ease-in-out;
}
.postCardCont .postCardList-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-columns: 1fr;
  gap: 1rem;
}
.postCardCont .postCardList-2 a {
  text-decoration: none;
  z-index: 1;
}
.postCardCont .postCardList-2 > a .content {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  height: 200px;
  max-height: 400px;
  border-radius: 10px;
  padding: 1.5em;
  font-size: 2em;
}
.postCardCont .postCardList-2 > a .content:hover {
  outline: 1px solid rgba(30, 143, 255, 0.5);
}
.postCardCont .postCardList-2 > a .content:hover .contentBg {
  opacity: 0.4;
  background-size: 125%;
}
.postCardCont .postCardList-2 .contentBg {
  background-image: url("/www.spottimedia.fi/content/images/post-pic-2-thumb.jpg");
  background-size: 120%;
  background-position: center;
  opacity: 0.25;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  transition: opacity 0.25s ease-in-out, background-size 0.25s ease-in-out;
}

.testCardCont {
  width: 100%;
  padding: 1rem;
  background-color: #1a1a1a;
  border-radius: 10px;
}
.testCardCont .title {
  color: #f0f0f0;
  margin-bottom: 0.5em;
}
.testCardCont .cardList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.testCardCont .cardList a {
  text-decoration: none;
  z-index: 1;
}
.testCardCont .cardList > a .content {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  aspect-ratio: 5/3;
  max-height: 300px;
  border-radius: 10px;
  padding: 1.5em;
  font-size: 2em;
}
.testCardCont .cardList > a .content:hover .contentBg {
  opacity: 0.4;
  opacity: 0.6;
  background-size: 125%;
}
.testCardCont .cardList .contentBg::after {
  content: "";
  background: url("/www.spottimedia.fi/content/images/spottimedia-logo-cutout.svg") center center;
  background: url("/www.spottimedia.fi/content/images/spottimedia-logo-cutout.svg") center center;
  background-size: 120%;
  background-size: 30%;
  background-position: center;
  background-color: #00ffe5;
  opacity: 0.25;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  transition: opacity 0.25s ease-in-out, background-size 0.25s ease-in-out;
}/*# sourceMappingURL=main.css.map */