* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::selection {
    color: #232323;
    background: #BA0707;
}

/* Hide Scrollbar on Everything but Safari */
::-webkit-scrollbar {
    display: none;
}

body {
    background: #212121;
    scrollbar-width: none;  /* Hide Scrollbar on Safari */
    padding: 0;
    margin: 0;
    font-family: Arial;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

a {
    text-decoration: none;
    color: unset;
}



/* Navigation Bar */
nav {
    z-index: 2;
    width: 100%;
    max-width: 2200px;
    padding: 15px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    user-select: none;
}

.nav-img {
    height: 50px;
    width: 50px;
}

.nav-link {
    color: #BA0707;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px;
    font-size: 1.2em;
    transition: 0.3s;
}

.nav-link-first {
    margin-left: auto;
}



/* Hero Section */
header {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    padding: 120px 0 120px 0;
    margin: 0 0 75px 0;
    background: linear-gradient(to bottom, #212121 6%, transparent, #212121 94%)
}

.hero-background-img {
    height: inherit;
    width: inherit;
    position: absolute;
    background: url(../Images/background.png);
    z-index: -1;
}

.hero-blob-gradient {
    background: radial-gradient(ellipse at center, #ba070734 25%, transparent 70%);
    width: 90%;
    max-width: 1500px;
    height: 800px;
    position: absolute;
    z-index: 1;
    margin-left: -100px;
    margin-top: -35px;
    overflow: hidden;
    transform: rotateX('10deg');
}

.hero-text-container {
    display: flex;
    flex-flow: column nowrap;
    padding-right: 10%;
    overflow: hidden;
}

.hero-text {
    font-size: 4.5em;
    margin: 8px;
    font-weight: 400;
    color: #ffffff;
    z-index: 2;
}

.text-slider {
    font-weight: 600;
    color: #BA0707;
    transition: 0.8s;
}

.hero-button {
    width: fit-content;
    padding: 10px;
    margin: 80px 20px;
    border: none;
    border-radius: 10px;
    box-shadow: -4px 4px #000000;
    background: #BA0707;
    font-size: 1.35em;
    font-weight: 400;
    transition: 0.2s ease-in;
    z-index: 2;
}

.hero-button:hover {
    box-shadow: -7px 7px #000000;
    transform: translateY(-8px) translateX(8px) scale(1.05);
}

.hero-img {
    width: 670px;
    height: 400px;
}



/* Small About Section */
.intro-container {
    margin: 115px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.intro-heading {
    color: #C7C7C7;
    font-size: 3.5em;
    margin: 0;
}

.intro-heading span {
    color: #BA0707;
    font-weight: 600;
}

.intro-paragraph {
    width: 600px;
    color: #AAAAAA;
    font-weight: 600;
}

.intro-paragraph span {
    font-style: italic;
}

.intro-separator {
    width: 92vw;
    height: 3px;
    margin: 100px 0;
    border: none;
    background: #C7C7C7;
    opacity: 0.2;
    border-radius: 3px;
}
