h3 {
    color: #292160;
}

.button {
    background: #7a6cdb;
    color: #ffffff;
    border-radius: 47px;
    outline: 7px solid color(srgb 1 1 1 / 0);
    padding: 1.15em 1.5em;
    font-size: 18px;
    font-weight: 500;
    vertical-align: middle;
    display: inline-block;
    margin: 0px;
    letter-spacing: 0.25px;
    animation-name: outline;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transition: all ease-in-out 0.3s;
    box-shadow: 1px 1px 5px 0px color(srgb 0.09 0.05 0.45 / 0.3);
}

@keyframes outline {
    0%   {outline: 0px solid color(srgb 1 1 1 / 0)}
    15%  {outline: 8px solid color(srgb 1 1 1 / 0.35)}
    50% {outline: 8px solid color(srgb 1 1 1 / 0.35)}
    100% {outline: 12px solid color(srgb 1 1 1 / 0)}
  }

  .button:hover,
  .button:focus {
    background-color: #292160;
  }

.flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.offset-header {
    padding-top: 130px;
}

.t-right{
    text-align: right;
}

.t-center{
    text-align: center;
}

.rel {
    position: relative;
}

.main {
    padding: 2rem;
    background-image: url('/Images/Syna-BG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.framer-text {
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#header {
    z-index: 999;
}

#header > div {
    width: 100%;
    position: absolute;
}

#header a:not(.logo) {
    color: #666666;
    margin-left: 22px;
}

/* HOME LANDING SCREEN */
section#landing {
    min-height: 100vh;
}

h1.framer-text {
    font-family: "Geist", "Inter", sans-serif;
    font-size: 88px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: .9em;
    text-align: center;
    color: transparent;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 20px;
}

h1.framer-text + h3 {
    font-size: 1.6rem;
    margin-bottom: 42px;
}

.flex.framer {
    column-gap: 32px;
}


@media print, screen and (max-width: 40em) {
    h1.framer-text {
        font-size: 60px;
    }
}