/* Add Fonts */
@font-face {
    font-family: Brandon;
    src: url(../links/fonts/brandon-grotesque/BrandonGrotesque-Regular.otf);
}
@font-face {
    font-family: Brandon;
    src: url(../links/fonts/brandon-grotesque/BrandonGrotesque-RegularItalic.otf);
    font-style: italic;
}
@font-face {
    font-family: Brandon;
    src: url(../links/fonts/brandon-grotesque/BrandonGrotesque-Bold.otf);
    font-weight: bold;
}
@font-face {
    font-family: Brandon;
    src: url(../links/fonts/brandon-grotesque/BrandonGrotesque-BoldItalic.otf);
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: Brandon;
    src: url(../links/fonts/brandon-grotesque/BrandonGrotesque-Black.otf);
}

/* Variables */
:root {
  --black: #0b1116;
  --white: #ffffff;
  --pink: #fb70ae;
}
/* General Link Styles*/
a:link {
    color: #fb70ae;
    text-decoration: none;
}

a:visited {
    color: var(--white)e;
    text-decoration: none;
}

a:hover {
    color: var(--pink);
    text-decoration: none;
}

a:active {
    color: var(--white);
    text-decoration: none;
}

/* Body Styles */
body {
    background: var(--black);
    margin:0;

}

/* Font Styles */
html{
    font-size: 16px;
}

body{
    font-family: brandon-grotesque, sans-serif; 
    color: white;


    /* Scroll Bar removal */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    overflow-y: scroll;
    overflow-x: hidden;
    overflow:-moz-scrollbars-none;

}
body::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}
/* Frontpage */
.content{
    margin: auto;
    max-width: 1440px;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}
.flex{
    display: flex;
    align-items: center;
}
.wrap{
    flex-wrap: wrap;
}
.column{
    flex-direction: column;
}
.c12{
    margin-block: 2rem;
}
.section::before{
    content: Headline;
}

.logo{
    max-width: 10%;
    max-height: 5rem;
}
.videoplayer{
    width: 100%;
    height: 60vh;
    padding:0;
    margin-block: 2rem 1rem;
    background-color: black;
    border-width: 6px;
    border-style: solid;
    border-image: linear-gradient(200deg, white , var(--black)30%) 1;
}

/* Text */
h1{

}

h2{
    
}

h3{
    color: var(--white);
    font-size: 2rem;
}

h4{
    font-style: italic;
    margin-top: 0;
}

h5{
    
}
p{
    color: var(--white);
    font-size: 1rem;
}
.highlight{
    color: #fb70ae;
}
    @media screen and (max-width: 1200px) {
        h1 span{
            font-size: 4rem;
        }
        .content{
            width: 100%;
        }
        .logo{
        padding: 0.5rem 0.5rem;
        }

    }

@media screen and (max-width: 800px) {
    .videoplayer{
    height: 40vh;
}

}