html, body {
    background-color: #262626;
    background-size: cover;
    overflow-y: scroll;
    overflow: hidden;
    height: 100%;
    margin: 0;
  }
  
  .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
  }
  
  .main-heading {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    font-size: 26px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0);
    text-align: center;
    position: absolute;
    -webkit-text-stroke: 2px black;
  
  /* nicht highlighable */ 
  
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none; 
  }
  
  .sub-heading {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.856);
    text-transform: uppercase;
    position: absolute;
  
    /* nicht highlighable */ 
  
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none; 
  }
  
  
  /* Links */
  
  :root {
    --color-1: #FEFBFB;
    --color-2: rgba(100, 65, 165, 0.4);
    --color-3: #000000;
    --color-4: #242222;
    
    --color-3-transparent: rgba(20, 20, 20, 0.301);
  }
  
  .links {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
  }
  
  .link-group {
    margin-bottom: 40px;
  }
  
  .links p {
    font-family: "Helvetica Neue", Arial, sans-serif;
    text-align: center;
    margin: 0;
  }
  
  .links p span {
    text-transform: uppercase;
    font-weight: 70;
    letter-spacing: 0.1rem;
    color: var(--color-3);
    background-color: var(--color-3-transparent);
    padding: 0.5rem 8rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    border: 2px solid var(--color-2);
  
    /* nicht highlightbar */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  a:link,
  a:visited,
  a:hover,
  a:active {
    color: rgb(100, 65, 165);
    -webkit-text-stroke:1.3px rgba(20, 20, 20, 0.007);
  }
  
  .container {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

.custom-twitch-embed {
  position: relative; 
  overflow: hidden; 
}

.custom-twitch-embed::before,
.custom-twitch-embed::after {
  content: ''; 
  position: absolute;
  top: 0;
  height: 100%;
  width: 6%; 
  background-color: #262626; 
}

.custom-twitch-embed::before {
  left: 0;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.custom-twitch-embed::after {
  right: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
