:root {
    --primaryColor: #ff00ff;
    --secondaryColor: #00ffee;
    --tertiaryColor: #7300ff;
    --whiteColor: #ffffff;
    --blackColor: #000000;
    --horizontalGradient: linear-gradient(
        270deg,
        var(--tertiaryColor) 0%,
        var(--primaryColor) 61%,
        var(--secondaryColor) 100%
    );
}
body,
html {
    height: 100%;
    width: 100%;
}
body {
    font-family: "agency-fb-wide", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
    background: var(--blackColor);
    margin: 0;
    padding: 0;
}
p {
    font-weight: 500;
    font-size: 48px;
    margin-bottom: 0;
    margin-top: 0;
}
img {
    height: 150px;
    width: 150px;
    margin-bottom: 24px;
}
.gcs-days {
    width: 100%;
    height: 100%;
    align-items: center;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 3;
}
.gcs-days-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.img-logo {
    width: 240px;
    margin-bottom: 1.75rem;
}
.timer {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 2px;
    color: var(--whiteColor);
}
h1 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--whiteColor);
    text-transform: uppercase;
}
h1 span {
    background: var(--horizontalGradient);
    background-clip: text;
    -webkit-background-clip: text;
    display: inline-block;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
    .timer {
        font-size: 2rem;
    }
    h1 {
        font-size: 1.75rem;
    }
}
