h1 {
    font-size: 50px;
    background-color: rgba(255,255,255,0.6);
    background-image: linear-gradient(45deg, #bab2ea, #c2bbe6, #e3b5ff, #e5bbff);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
    transform: scaleY(0.0);
    opacity: 0;
    animation: h1-intro 0.5s 0.25s ease-in-out forwards;
}

@keyframes h1-intro {
  0% {
    transform: scaleY(0.0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1.0);
    opacity: 1;
  }
}

h2 {
    margin: 0;
}

.watchfaces-introduction {
    text-align: center;
    background: #000000;
    background: linear-gradient(45deg, rgba(0, 0, 0, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(174, 0, 255, 1) 100%);
    color: rgba(255,255,255,0.85);
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    transition: all 0.25s ease-in-out;
    animation: 0.5s watchfaces-introduction-fade-in ease-in-out;
    overflow: hidden;
}

.watchfaces-introduction-inner-wrapper {
    background-image: url(/images/panel-watchfaces.webp);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-blend-mode: lighten;
    background-size: cover;
}

.watchfaces-introduction-inner-wrapper-2 {
    padding: 100px 50px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 1) 0%, rgba(9, 9, 121, 0.85) 35%, rgba(174, 0, 255, 1) 100%);
}

@keyframes watchfaces-introduction-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.watchfaces-introduction p {
    font-size: 120%;
    line-height: 140%;
    transform: scaleY(0.0);
    opacity: 0;
    animation: watchface-introduction-p-intro 0.5s 0.25s ease-in-out forwards;
}

@keyframes watchface-introduction-p-intro {
  0% {
    transform: scaleY(0.0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1.0);
    opacity: 1;
  }
}

.watchface-outer-wrapper {
    display: flex;
    gap: 40px;
    padding: 20px 0;
}

.watchface-image-wrapper {
    width: 25%;
    overflow: hidden;
    display: inline-block;
    align-content: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }

    .watchfaces-introduction-inner-wrapper-2 {
        padding: 50px 25px;
    }

    .watchfaces-introduction {
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

    .watchfaces-introduction p {
        font-size: 100%;
        line-height: 140%;
    }

    .watchface-outer-wrapper {
        gap: 20px;
    }

    .watchface-image-wrapper {
        width: 45%;
    }
}

.watchface-image-inner-wrapper {
    width: 100%;
    position: relative;
}

.watchface-image-inner-wrapper .watchface-image-back {
    width: 100%;
    height: auto;
}

.watchface-image-inner-wrapper .watchface-image-face {
    position: absolute;
    top: 31%;
    width: 76%;
    left: 12%;
    height: auto;
    border-radius: 50%;
}

.watchface-image-inner-wrapper .watchface-image-front {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}

.watchface-desc {
    flex: 1;
    align-content: center;
}

.store-badge {
    width: 135px;
    height: auto;
}

.watchface-outer-wrapper {
    border-bottom: dotted 1px rgba(0,0,0,0.25);
}

.watchface-links {
    margin-top: 10px;
}

.watchface-links-label {
    font-weight: bold;
}