@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Burned&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap');

:root {
  --text: #eef1f7;
  --background: #0a0e15;
  --primary: #3a67bb;
  --secondary: #1b3a6f;
  --accent: #1f4fa8;
  --light1: 0;
  --dark1: 1;
  --navBackground: #1d1d1d80;
  --navLogo: #454545;
  --navAccent: #454545;
  --navText: #eef1f7;
  --navBorderWidth: 5px;
  --cardColor: #142036;
  --mobileNav: #c8c9ca;
}

html[data-theme="light"] {
  --text: #080b11;
  --background: #eaeef5a6;
  --primary: #4471c5;
  --secondary: #90afe4;
  --accent: #5787e0;
  --light1: 1;
  --dark1: 0;
  --navBackground: #bebebecb;
  --navAccent: #ffffff00;
  --navLogo: #0153c5;
  --navText: #283c69;
  --navBorderWidth: 1px;
  --cardColor: #c9d5eb;
  --mobileNav: #c8c9ca;
}

html[data-theme="dark"] {
  --text: #eef1f7;
  --background: #0a0e15;
  --primary: #3a67bb;
  --secondary: #1b3a6f;
  --accent: #1f4fa8;
  --light1: 0;
  --dark1: 1;
  --navBackground: #1d1d1d80;
  --navAccent: #454545;
  --navLogo: #454545;
  --navText: #eef1f7;
  --navBorderWidth: 5px;
  --cardColor: #142036;
  --mobileNav: #c8c9ca;
}

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background-color: var(--background);
}

:root {
  --button-color: #202020cc;
}

ul {
  z-index: 3;
}

.top {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: var(--navBackground);
  backdrop-filter: blur(10px);
  position: fixed;
  height: fit-content;
  top: 0;
  width: 100%;
  border-bottom: var(--navBorderWidth) solid var(--navAccent);
  max-height: 88px;
}

.hideTop {
  visibility: hidden;
}

.showTop {
  visibility: visible;
}

.center {
  left: 50%;
  text-align: center;
  font-size: 16px;
  margin: auto;
}

.centerText {
  text-align: center;
  display: inline-block;
  width: 100%;
}

.bottom {
  visibility: hidden;
  backdrop-filter: blur(10px);
}

.logo {
  z-index: 3;
  position: fixed;
  border-radius: 50%;
  border: 5px solid var(--navLogo);
  display: block;
  margin-left: -50px;
  width: 100px;
  left: 50%;
  top: 27px;
  transition: .3s;
}

.logo:hover {
  filter: brightness(.5);
  transition: .3s;
  scale: 1.1;
}

.card {
  font-family: 'Raleway', sans-serif;
  display: block;
  width: 100%;
  padding: 5%;
  background-color: var(--cardColor);
  margin-top: 20px;
  border-radius: 20px;
  overflow: auto;
  position: relative;
  transition: .1s;
}

.card2 {
  font-family: 'Raleway', sans-serif;
  display: inline-block;
  width: 45%;
  background-color: var(--cardColor);
  color: white;
  margin-top: 20px;
  border-radius: 25px;
  overflow: auto;
  position: relative;
  background-size: 150%;
  background-position: center top;
  border-width: 10px;
  border: solid;
  border-color: var(--navAccent);
  /* background-repeat: no-repeat; */
}

.cardR {
  float: right;
}

.card2Spacer {
  width: 100%;
  height: 13vw;
}

.card2container
{
  padding: 5%;
  backdrop-filter: blur(10px);
  background-color: rgba(75, 75, 75, 0.3);
  background: linear-gradient(0deg, rgba(75,75,75,0.3) 0%, rgba(75,75,75,0.3) 80%, rgba(255,255,255,0) 100%);
  /* border-top-left-radius: 25px;
  border-top-right-radius: 25px; */
}

#alec-card {
  background-image: url(Alec.jpg);
}

#andrew-card {
  background-image: url(AEae.jpg);
}

.card-container {
  margin-bottom: 50px;
}

@media screen and (max-width: 1000px)
{
  .card2 {
    /* display: inherit; */
    width: 100%;
    float: left;
  }
  .cardR{
    float: left;
  }

  .card2Spacer {
    height: 30vw;
  }
}

.imageTopRight {
  float: right;
  border-radius: 20px;
  margin-left: 5px;
  margin-bottom: 5px;
}

.ecdQuote {
  font-family: 'Young Serif', serif;
  font-size: 20px;
  color: rgb(139, 139, 139);
}

.ecdQuoteTagline {
  font-size: 15px;
  color: rgb(96, 96, 96);
}

.ecdInnerQuote {
  font-size: 22px;
  color: rgb(166, 166, 166);
}

.ecdDesc {
  font-family: 'Courier New', Courier, monospace;
}

li {
  float: left;
  padding: 5px 5px;
}

li a {
  display: block;
  font-weight: 700;
  color: var(--navText);
  text-align: center;
  padding: 14px 16px;
  /* margin: 0px 20px; */
  text-decoration: none;
  border: var(--navBorderWidth) solid var(--navAccent);
  border-radius: 50px 25px;
  transition: .3s;
}

li a:hover:not(.active) {
  background-color: #55555591;
  scale: 1.1;
  transition: .3s;
}

#social:hover:not(.active) {
  background-color: #9f9f9f;
}

#ecd:hover:not(.active) {
  background-image: url("ecd.png");
  background-size: 150px;
  text-shadow: 0 0 2px #000;
  transition: .3s;
  /* horizontal-offset vertical-offset 'blur' colour */
  -moz-text-shadow: 0 0 2px #000;
  -webkit-text-shadow: 0 0 2px #000;
}

.active {
  background-color: #0d6ff6;
  color: white;
}

.navContainer {
  /*   position: fixed; */
  width: 100%;
  height: 100px;
  font-family: 'Open Sans', sans-serif;
}

#Video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.content1 {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  z-index: 1;
}

a {
  text-decoration: none;
  color: var(--button-color);
}

h1 {
  font-weight: 300;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.videoSection {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--button-color) url('./https://traversymedia.com/downloads/cover.jpg') no-repeat center center/cover;
}

.video-container::after {
  /* filter: invert(calc(var(--light1) / 2)); */
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: blur(10px) brightness(calc((var(--light1) / 1) + 1));
}

.video-container:after {
  content: '';
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
}

.content {
  z-index: 1;
  width: 1000px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -500px
}

.content h1 {
  font-family: 'Rubik Burned', cursive;
  color: #0e6eff;
  text-shadow: 0 0 2px #000;
  /* horizontal-offset vertical-offset 'blur' colour */
  -moz-text-shadow: 0 0 2px #000;
  -webkit-text-shadow: 0 0 2px #000;
}

.info {
  padding-left: 20%;
  padding-right: 20%
}

.info2 {
  padding-left: 15%;
  padding-right: 15%
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  background: var(--button-color);
  color: #fff;
  border: solid #454545 5px;
  margin-top: 25px;
  opacity: 0.7;
  border-radius: 50px 25px;
  backdrop-filter: blur(10px);
  transition: .3s;
}

.btn:hover {
  transform: scale(1.2);
  background-color: #55555591;
  transition: .3s;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-device-width: 500px) {
  a {
    font-size: 30px;
  }

  h1 {
    font-size: 60px;
  }

  h3 {
    font-size: 30px;
  }
}

.spacer {
  width: 100%;
  height: 50px;
}

@media screen and (max-device-width: 500px) {
  .spacer {
    width: 100%;
    height: 200px;
  }
}

.footer {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0px;
  font-weight: 500;
  background-color: var(--navBackground);
  color: var(--text);
  text-align: center;
}


[href*=youtube] {
  background: #d10000;
}

[href*=youtube]::before {
  content: url(youtube.png);
}

[href*=reddit] {
  background: #ff5500;
}

[href*=reddit]::before {
  content: url(reddit.png);
}

[href*=discord] {
  background: #4e5d94;
}

[href*=discord]::before {
  content: url(discord.png);
}

[href*=andromeda] {
  background: #00a028cd;
}

.socialContainer {
  margin: auto;
  width: 60%;
  padding: 10px;
}

.social {
  margin: 0 auto;
  max-width: 30rem;
  list-style-type: none;
  display: flex;
}

.sociala {
  color: black;
  display: block;
  font-weight: bold;
  margin: 0.25rem;
  padding: 0.5rem;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  text-align: center;
  border: 2px solid #454545;
  border-radius: 50px 25px;
}

.socialwb {
  color: rgb(0, 0, 0);
  display: block;
  font-weight: bold;
  margin: 0.25rem;
  padding: 0.5rem;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  text-align: center;
  border: 2px solid #454545;
  border-radius: 50px 25px;
}

a::before {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5em;
}

.theme-changer {
  display: block;
  bottom: 5%;
  right: 2%;
  position: fixed;
  border: double 2px var(--accent);
  padding: 10px 10px 3px 10px;
  border-radius: 50px;
  text-align: center;
  float: right;
  color: black;
  background-color: var(--secondary);
  backdrop-filter: blur(5px);
  text-decoration: none;
  z-index: 12;
  transition: 0.1s;
}

.theme-changer img {
  filter: invert(var(--light1));
}

.theme-changer:hover {
  filter: brightness(0.5);
  cursor: pointer;
  transition: 0.1s;
}


@media screen and (max-device-width: 500px) {
  .hideTop {
    visibility: visible;
  }

  .showTop {
    visibility: hidden;
  }

  .bottom {
    visibility: visible;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: auto;
    background-color: var(--navBackground);
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 5px solid var(--navAccent);
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    z-index: 3;
    /*     max-height:120px; */
  }

  .logo {
    position: fixed;
    border-radius: 50%;
    border: 5px solid var(--navLogo);
    display: block;
    margin-left: -75px;
    width: 150px;
    left: 50%;
    top: 13px;
  }

  li a {
    font-size: 50px;
    white-space: nowrap;
  }

  li {
    padding: 30px 25px 35px 25px;
  }

  .info {
    padding-left: 5%;
    padding-right: 5%;
  }

  p {
    font-size: 10pt;
  }

  .social {
    margin: 0;
  }

  .social a {
    width: 100%;
  }

  .social a span {
    display: none;
  }

  .socialContainer {
    padding: 0;
    margin-left: 12%;
  }

  .theme-changer {
    margin-bottom: 12%;
    width: 10%;
  }

  .theme-changer img {
    width: 100%;
  }

  .info2_header h1 {
    font-size: 80pt;
  }

  .info2_header h2 {
    font-size: 30pt;
  }

  .content h1 {
    font-size: 80pt;
  }

  .ecdQuote {
    font-size: 25pt;
  }

  .ecdInnerQuote {
    font-size: 27pt;
  }

  .spacer {
    height: 50px;
  }

  iframe {
    width: 95%;
    height: 500px;
  }

  .footer {
    height: 230.5px;
    font-size: 35px;
  }

  .info2 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .content img {
    width: 85%;
  }

  .content h1 {
    font-size: 100pt;
  }
  .content h3 {
    font-size: 30pt;
  }
  .content .btn {
    margin-top: 50px;
    font-size: 40pt
  }

  .card2container p {
    font-size: 30pt;
  }

  .card2container h2 {
    font-size: 50pt;
  }

  .card2Spacer {
    height: 36vw;
  }

  .centerText {
    font-size: 25pt;
  }
}