
:root {
    --main-color: rgb(223, 34, 56);
    --main-color-nums: 223, 34, 56;
    --bg-color: #121417;
    --heading-size: 30vh;
    --big-heading-size: calc(100vh - 7.1rem);
    --title-offset: 0px;
}

/* 
-------------------
HEADING 
-------------------
*/

.heading
{
    background: linear-gradient(
        120deg,
        rgba(var(--main-color-nums), 0) 0%,
        rgba(var(--main-color-nums), 0.1) 10%,
        rgba(var(--main-color-nums), 0.25) 25%,
        rgba(var(--main-color-nums), 0.5) 50%,
        rgba(var(--main-color-nums), 1) 100%
    );
    text-align: center;
    color: #000000;
    overflow: hidden;
    position: relative;
    height: var(--heading-size);
}

.title
{
    position: absolute;
    bottom: 50%;
    left: 0%;
    right: 0%;
    transform: translate(0%, 50%);
    font-size: calc(1.5rem + 3vw);
    font-weight: 500;
}

.big
{
    --heading-size: var(--big-heading-size);
}

/* .big>.title, .big>.subtitle
{
    top: calc(50% - 3.5rem);
} */

.slide-up
{
    animation: slide-up ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.title::after
{
    content: "";
    width: 3px;
    height: calc((1.5rem + 3vw) * 1.25); 
    bottom: calc((1.5rem + 3vw) * -0.25);
    background-color: #121417;
    position: relative;
    display: inline-block;
}

/* .subtitle::after 
{
    content: "";
    width: 2px;
    height: calc((1rem + .75vw) * 1.25); 
    bottom: calc((1rem + .75vw) * -0.25);
    background-color: #121417;
    position: relative;
    display: inline-block;
} */

.unselected::after
{
    opacity: 0;
}

.blink::after 
{
    animation: cursor-blink 1s step-end infinite;
}

.btn-submit:hover
{
    border-color: var(--main-color);
    color: var(--main-color);
    background-color: var(--bg-color);;
}

.btn-submit
{
    transition: .1s;
}

@keyframes cursor-blink 
{
    50% 
    {
        opacity: 0;
    }
    100% 
    {
        opacity: 1;
    }
}

@keyframes slide-up
{
    0% 
    {
        transform: translate(0%, 50%);
    }
    100% 
    {
        transform: translate(0%, var(--title-offset));
    }
}

.subtitle
{
    position: absolute;
    top: 50%;
    left: 0%;
    right: 0%;
    transform: translate(0%, var(--title-offset));
    margin-left: auto;
    margin-right: auto;
    padding-left: 5vw;
    padding-right: 5vw;
    font-size: calc(.75rem + 1vw);
    font-weight: 600;
    opacity: 0;
}

.subtitle>a
{
    color: #000;
    font-weight: 700;
}

.subtitle>a::after
{
    background-color: #000 !important;
    height: 2px;
}

@property --var1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 40%;
  }

  @property --var2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 70%;
  }

.heading-content
{
    position: absolute;
    background: radial-gradient(
        rgba(0, 0, 0, 0.1) 18%,
        transparent 18%
    ), linear-gradient(
        0deg,
        transparent 0 45%,
        rgba(0, 0, 0, 0.05) 45% 55%,
        transparent 55% 100%
    ), linear-gradient(
        90deg,
        transparent 0 45%,
        rgba(0, 0, 0, 0.05) 45% 55%,
        transparent 55% 100%
    );
    background-position: 50% 0%;
    background-size: 2rem 2rem;
    bottom: -100%;
    right: -50%;
    left: -50%;
    top: -100%;
    transform: rotate(15deg);
    animation: slide 0.5s linear infinite;
    pointer-events: none
}

@keyframes slide
{
    0% 
    {
        transform: rotate(15deg) translateX(0rem);
    }
    100% 
    {
        transform: rotate(15deg) translateX(2rem);
    }
}

.codered
{
    color: rgb(223, 34, 56);
}

.dropdown:hover>.auto-open {
    display: block;
} 

.heading::after, .background
{
    background-color: #121417;
}

.background
{
    animation: fade-in ease 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.fade-in
{
    animation: fade-in ease 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fade-in
{
    0% 
    {
        opacity: 0;
    }
    100% 
    {
        opacity: 1;
    }
}

.fade-out
{
    animation: fade-out ease 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fade-out
{
    0% 
    {
        opacity: 1;
    }
    100% 
    {
        opacity: 0;
    }
}

.body
{
    text-align: center;
    color: white;
    margin: min(calc(.5rem + 3vw), 3rem) min(3vw, 5rem);
    font-size: calc(1rem + .5vw);
}

.link
{
    color: #ff004d;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

a
{
    color: #ff004d;
    text-decoration: none;
}

.highlightable
{
    display: inline-block;
    position: relative;
}

a>img
{
    transition: all .05s ease-in-out; 
}

.highlightable::after 
{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff004d;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
  
.highlightable:hover::after 
{
    transform: scaleX(1);
    transform-origin: bottom left;
}

a:hover>img
{
    transform: scale(1.05); 
}

.section
{
    text-align: center;
    color: white;
    font-size: calc(1rem + .5vw);
    margin: min(calc(.5rem + 3vw), 3rem) auto;
}

.narrower
{
    margin: min(calc(.5rem + 3vw), 3rem) 8vw;
}

.column
{
    margin-bottom: min(calc(.5rem + 3vw), 3rem);
}

.small-text
{
    font-size: calc(0.5rem + .5vw)
}

.break
{
    border: .1rem solid white;
    width: 100%;
}

.seperator
{
    border: .1rem solid white;
    width: 100%;
    display: inline-block;
}

.break-yt
{
    display: inline-block;
    border: .1rem solid white;
    margin-bottom: 5px;
    width: 100%;
    max-width: 380px;
}

.thin
{
    padding: 0rem;
}

.inline
{
    display: inline-block;
}

.inline-img
{
    display: inline-block;
    vertical-align: text-bottom;
}

.yt
{
    text-align: center;
    width: 500px;
}

.logo
{
    position: relative;
    bottom: 5px;
}

.left
{
    text-align: left;
}

.center
{
    text-align: center;
}

.full-width
{
    width: 100%;
}

.results
{
    width: 220px;
    margin-block: -10px;
}

.dropdown-item.active
{
    color: white !important;
    background-color: transparent !important;
}

.dropdown-item.active:hover
{
    color: white !important;
    background-color: var(--bs-dropdown-link-hover-bg) !important;
}

.dropdown-item:active
{
    background-color: var(--main-color) !important;
}

.video-container {
	position:relative;
	padding-bottom:56.25%;
	height:0;
	overflow:hidden;
    text-align: center;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
    max-width: 100%;
	height:100%;
}

.game {
    width: 400px;
    height: auto;
    padding: 1rem;
}

.circle {
    border-radius: 20%;
    display: inline-block;
    position: relative;
    width: fit-content;
    height: fit-content;
    transition: 2s;
}

.circle img {
    border-radius: 0%;
    display: block;
    width: 100%;
    height: auto;
    border:1px solid var(--bg-color);
}
.circle:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, transparent 60%, var(--bg-color) 100%),
        linear-gradient(to top, transparent 60%, var(--bg-color) 100%),
        linear-gradient(to left, transparent 60%, var(--bg-color) 100%),
        linear-gradient(to right, transparent 60%, var(--bg-color) 100%),
        radial-gradient(ellipse at center, transparent 70%,var(--bg-color) 100%);
    border-radius: 0%;
    position: absolute;
    top: 0; left: 0;
    transition: 0.5s linear;
}

.preview-container.reveal.active {
    transform: scale(1.04);
}

.preview-container
{
    width: 100%; 
    height: auto; 
    position: relative;
    overflow: hidden;
    transition: 2s;
}

.preview-text
{
    font-size: calc(1.5rem + 4vw);
    top: 3vw; 
    left: 2vw; 
    position: absolute;  
    z-index: 9999;
    transition: 0.5s ease-out;
}

.preview-container.reveal.active>.preview-text {
    font-size: calc(1.5rem + 6vw);
}

.preview-desc
{
    text-align: right;
    font-size: calc(.5rem + 1.5vw);
    bottom: 5vw; 
    left: 40%;
    right: 3vw;
    position: absolute;  
    z-index: 9999;
    border-right: solid;
    padding-right: 5px;
    opacity: 0;
    transition: 0.5s ease-out;
    transform: scale(0.8);
    transform-origin: right;
}

.preview-container.reveal.active>.preview-desc {
    opacity: 1;
    transform: scale(1);
}

.social 
{
    background-color: transparent;
    color: transparent;
    margin: auto;
    display: block;
    width: fit-content;
    height: 70px;
    padding-bottom: 10px;
}