/* --- ROOT VARIABLES */

:root {
  --main-font: "VT323", monospace;
  --alt-font: "Bytesized", sans-serif;
  --alt-font--2: "panel-sans-mono", sans-serif;
  --alt-font--3: "nitti", monospace;
  --clr-accent--white: whitesmoke;
  --clr-accent--green: rgba(98, 187, 139, 1);
  --no-display: none;
}

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

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

body {
  background-color: rgb(209, 217, 208);
  font-family: var(--alt-font);
  line-height: 1.4;
  color: #333;
}

main {
  margin: 0 auto;
  overflow-x: scroll;
}

.name--container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: absolute;
  height: 100%;
}

.name-h1 {
  font-size: 3em;
  letter-spacing: -10px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  pointer-events: none;
}

.radio-link {
  margin-top: 30px;
  padding: 2px 0;
  position: absolute;
  bottom: 10px;
  left: 10px;
  text-decoration: none;
  color: #333;
  width: fit-content;
  display: flex;
}

.radio-link h3:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.radio-link img {
  width: 50px;
}

.visualizer-container {
  margin: 0;
  padding: 10px;
  width: 95%;
  max-width: 1500px;
  float: right;
  position: relative;
}

.viz--video-player {
  border-radius: 2px;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  cursor: pointer;
  object-fit: cover;
}

.vis--vid {
  border: 5px solid var(--clr-accent--green);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.viz--vid-date {
  font-family: var(--alt-font--1);
  color: var(--clr-accent--white);
  text-shadow: #333;
  position: absolute;
  bottom: 30px;
  right: 40px;
}

@media only screen and (max-width: 860px) {
  .visualizer-container {
    width: 92%;
  }

  .viz--video-player {
    max-height: 89vh;
  }
}

@media only screen and (max-width: 660px) {
  .visualizer-container {
    width: 88%;
  }
}

@media only screen and (min-width: 1600px) {
  .content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .visualizer-container {
    float: none;
  }
}
