@font-face {
  font-family: Berthold Akzidenz Grotesk BE Extra Bold Condensed Italic;
  src: url('assets/fonts/Berthold\ Akzidenz\ Grotesk\ BE\ Extra\ Bold\ Condensed\ Italic.ttf') format('truetype')
}

body {
  background-color: black;
  color: orange;
  font-family: Verdana;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.enter-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  background-color: transparent;
  color: orange;
  border: 2px solid orange;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.enter-button:hover {
  background-color: orange;
  color: black;
  transform: scale(1)
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #321;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.artist-name {
  margin: 0;
  color: orange;
  font-family: 'Berthold Akzidenz Grotesk BE Extra Bold Condensed Italic', sans-serif;
}

.artist-name a {
  color: orange;
  font-family: 'Berthold Akzidenz Grotesk BE Extra Bold condensed Italic', sans-serif;
  text-decoration: none;
  font-size:  inherit;
  font-weight: inherit;
}

.artist-name a:hover {
  animation: rgbGlitch 10s infinite;
  background-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 15px 20px;
  color: orange;
  font-family: 'Berthold Akzidenz Grotesk BE Extra Bold Condensed Italic', sans-serif;
  text-decoration: none;
}

.nav-links li:not(:last-child)::after {
  content: " // ";
  margin-left: 15px;
}

.nav-links a:hover {
  animation: rgbGlitch .5s infinite;
  background-color: transparent;
}

@keyframes rgbGlitch {
  0% { 
    color: orange;
    text-shadow: 0 0 0 red, 0 0 0 blue;
    transform: translate(0);
  }
  20% { 
    color: #ff0040;
    text-shadow: -2px 0 0 red, 2px 0 0 blue;
    transform: translate(-2px, 1px);
  }
  40% { 
    color: #23e800;
    text-shadow: 2px 0 0 red, -2px 0 0 blue;
    transform: translate(2px, -2px);
  }
  60% { 
    color: #0011ff;
    text-shadow: -1px 0 0 red, 1px 0 0 blue;
    transform: translate(-1px, 2px);
  }
  80% { 
    color: #ff8000;
    text-shadow: 3px 0 0 red, -3px 0 0 blue;
    transform: translate(1px, -1px);
  }
  100% { 
    color: orange;
    text-shadow: 0 0 0 red, 0 0 0 blue;
    transform: translate(0);
  }
}

.about-me {
  border: 2px solid orange;
  position: relative;
  margin-top: 20px;
  padding: 20px
}

.about-me h2 {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background-color: #000;
  padding: 0 10px;
  margin: 0 auto;
}

.about-me p {
  text-align: center;
  display: inline-block;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.6;
}

.widget {
  background-color: black;
  border: 1px solid orange;
  border-radius: 2px;
  padding: 12px;
  max-width: 320px;
  font-family: 'Courier New', Courier, monospace, sans-serif;
  color: orange;
  cursor: grab;
  position: relative;
  text-align: center;
  margin: 10px;
}

.widget-title {
  margin: 0 0 12px 0;
  color: orange;
  letter-spacing: 1px;
}

.status-info {
  font-size: 16px;
  margin: 8px;
  line-height: 1;
}

.timestamp {
  font-size: 14px;
  color: orange;
  margin-top: 12px;
  display: block;
}

#mood-widget .widget-title, #mood-widget #mood-description {
  display: inline;
  margin-right: 10px;
}

