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

:root {
  font-size: 18px;
}

.logo-link {
  z-index: 1000;
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo-image {
  width: 100px;
  height: auto;
}

body {
  --color-text: #858898;
  --color-bg: #fff;
  --color-link: #fff;
  --color-link-hover: #858898;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-family: quasimoda, sans-serif;
  font-weight: 500;
}

.js .loading:before, .js .loading:after {
  content: "";
  z-index: 1000;
  position: fixed;
}

.js .loading:before {
  background: var(--color-bg);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.js .loading:after {
  opacity: .4;
  background: var(--color-link);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  animation: .7s linear infinite alternate forwards loaderAnim;
  top: 50%;
  left: 50%;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(.5, .5, 1);
  }
}

a {
  color: var(--color-link);
  outline: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
  outline: none;
}

a:focus {
  background: #d3d3d3;
  outline: none;
}

a:focus:not(:focus-visible) {
  background: none;
}

a:focus-visible {
  background: none;
  outline: 2px solid red;
}

.unbutton {
  font: inherit;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
}

.unbutton:focus {
  outline: none;
}

.frame {
  text-align: center;
  z-index: 1000;
  padding: 1.5rem;
  position: relative;
}

.frame__title {
  grid-area: title;
  justify-self: center;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.frame__links {
  text-align: center;
  grid-area: links;
  justify-self: start;
  display: inline;
}

.frame__links a:not(:last-child) {
  margin-right: 1rem;
}

.frame__demos {
  margin: 1rem 0;
}

.frame__demo--current, .frame__demo--current:hover {
  color: var(--color-text);
}

.content {
  text-align: center;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-items: center;
  max-width: 1200px;
  margin: 10vh auto 40vh;
  display: flex;
}

.content__title {
  grid-column: 1 / span 3;
  width: 100%;
  margin: 10vh 0 0;
  font-size: 11vw;
  line-height: .65;
}

.content__title-first {
  text-transform: uppercase;
  color: #000;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  display: block;
}

.content__title-second {
  text-transform: uppercase;
  color: red;
  font-family: tenez, sans-serif;
  font-style: normal;
  font-weight: 300;
}

.image {
  cursor: pointer;
  max-width: 30vw;
  margin: 0 1vw;
  display: grid;
  position: relative;
  overflow: hidden;
}

.image--style-1 {
  border-radius: 145px;
  width: 285px;
  height: 450px;
  box-shadow: 5px 5px 30px #df0a0a80;
}

.image--style-2 {
  border-radius: 50%;
  width: 320px;
  height: 320px;
  box-shadow: 5px 5px 30px #07eb1a80;
}

.image--style-3 {
  border-radius: 5px;
  width: 285px;
  height: 450px;
  box-shadow: 5px 5px 30px #0579e680;
}

.image--style-4 {
  border-radius: 145px 145px 0 0;
  width: 285px;
  height: 450px;
  box-shadow: 5px 5px 50px #fc01fc80;
}

.image--style-5 {
  border-radius: 145px 145px 0 0;
  width: 285px;
  height: 450px;
  box-shadow: 5px 5px 30px #1fe90480;
}

.image > .image__element, .image__wrap {
  transform-origin: inherit;
  will-change: transform;
  border-radius: inherit;
  grid-area: 1 / 1 / 2 / 2;
  width: 100%;
  height: 100%;
  position: relative;
}

.image__wrap {
  overflow: hidden;
}

.image__element {
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
}

@media screen and (width >= 53em) {
  .frame {
    text-align: left;
    grid-template-columns: 25% 50% 25%;
    grid-template-areas: "links title sponsor";
    justify-content: space-between;
    align-items: baseline;
    display: grid;
  }
}

.winner-bio {
  color: #333;
  text-align: center;
  background-color: #f7f7f7;
  border-radius: 12px;
  max-width: 600px;
  margin: .5rem auto 2rem;
  padding: 1rem 1.5rem;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 4px 10px #0000000d;
}

.call-to-action {
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #f03 0%, #000 100%);
  border-radius: 20px;
  margin-top: 4rem;
  padding: 4rem 2rem;
  font-family: Poppins, sans-serif;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.call-to-action h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  animation: 1s infinite blink;
}

.call-to-action .cta-button {
  color: #f03;
  cursor: pointer;
  background: #000;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s;
}

.call-to-action .cta-button:hover {
  background: #ffe6ea;
  transform: scale(1.05);
}
/*# sourceMappingURL=S-d Winners.d046a61c.css.map */
