.chooser {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 2rem;
    
    position: relative;
    background-color: #4900bf;
    background: linear-gradient(-90deg,rgba(73, 0, 191, 1) 1%, rgba(238, 0, 255, 1) 50%, rgba(255, 174, 0, 1) 99%);
}

.chooser .choice {
    width: 20%;
    min-width: 250px;
    height: 35rem;
    margin: 1rem;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    background-position: top;
}


.chooser .choice:not(.coming-soon)::before {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    border-radius: inherit;
    opacity: 0;
    box-shadow: var(--item-shadow);
    border: var(--verses-primary-color) 0px solid;
    transition: opacity 0.25s,
                top 0.25s,
                right 0.25s,
                bottom 0.25s,
                left 0.25s,
                border-width 0.25s,
                border-color 0.25s;
}

.chooser .choice:not(.coming-soon):hover::before {
    opacity: 1;
    border-width: 4px;
}

.chooser .choice:not(.coming-soon):active::before {
    border-color: var(--verses-secondary-color);
}

.chooser .choice .choice-trigger {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}

.chooser .choice.coming-soon:hover h2 {
    text-shadow: black 0 0 4px;
    color: white;
}


.chooser .choice.beta h2 {
    color: #e101fa;
    font-weight: bold;
    text-shadow: white 0 0 8px;
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 2rem;
    z-index: 150;
    transform: rotate(-12deg);
}

.chooser .choice.coming-soon h2 {
    color: var(--verses-secondary-color);
    font-weight: bold;
    text-shadow: black 0 0 20px;
    position: absolute;
    top: 40%;
    left: 3rem;
    z-index: 10;
    font-size: 2rem;
    transform: rotate(-12deg);
    transition: text-shadow 0.25s,
                color 0.25s;
}

.choice a.nameplate {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    
    padding: 1em;
    white-space: wrap;
    text-decoration: none;
    z-index: 100;
    border-radius: 12px;
    overflow: hidden;
}

.choice .nameplate:hover {
    text-decoration: none;
}

.choice .nameplate::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    box-shadow: inset 0 0 50px 0 white;
    transition: opacity 0.5s;
}

.choice.coming-soon .nameplate::before {
    border: 1px solid white;
}

.choice .nameplate:hover::before {
    opacity: 0.25;
}

.choice .nameplate h1 {
    font-weight: 600;
    color: white;
    text-align: center;
    font-size: 2rem;
    
    position: absolute;
    left: 0;
    bottom: 10rem;
    right: 0;
}

.choice .nameplate h2 {
    font-weight: 600;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 9rem;
    right: 0;
    color: var(--verses-secondary-color);
}

.choice .logo {
    position: absolute;
}

.choice .blurb {
    position: absolute;
    text-align: justify;
    text-justify: inter-word;
    padding: 1rem 2.5rem;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.choice .blurb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ffffff77;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    z-index: -1;
    transition: background-color 0.25s;
}

.chooser .choice:hover .blurb::before {
    background-color: #ffffffbb;
}

#versesCore.choice .logo {
    bottom: 10rem;
    left: 5rem;
}

#versesCore.choice::after {
    content: "";
    position: absolute;
    background-image: url('../images/core-silhouettes.png');
    background-repeat: no-repeat;
    background-attachment:scroll;
    background-position: top left;
    background-size: 100%;
    border-radius: 16px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#spellweavers {
    
}

#spellweavers.choice .logo {
    bottom: 8rem;
    left: 0.5rem;
}

#spellweavers.choice::after {
    content: "";
    position: absolute;
    background-image: url('../images/spellweavers-silhouettes.png');
    background-repeat: no-repeat;
    background-attachment:scroll;
    background-position: top left;
    background-size: 100%;
    border-radius: 16px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}


#commonAccord {
    
}