:root { /* If you're reading this, go away. */
  --text-color: #ff3300;
}

html, body {
  height: 100%;
  margin: 0;
}

@keyframes drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000px 1000px;
  }
}

body {
  background-color: #000;
  background-image: url('/assets/images/Background.jpg');
  background-repeat: repeat;
  background-size: auto 15px;
  animation: drift 20s linear infinite;
  color: var(--text-color);
  font-family: Arial, Helvetica, sans-serif;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 51, 0, 0.3);
  border: 0.25rem solid rgba(199, 40, 0, 0.3);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
  z-index: 1000;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

nav a:hover {
  opacity: 0.75;
  filter: brightness(0.25);
}

.social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 50%;
}

.social a:hover {
  transform: scale(1.1);
  filter: brightness(1.25);
}


.social img {
  width: 1.5rem;
  height: 1.5rem;
}

.border-image{
  border: 0.25rem solid rgba(255, 51, 0, 0.3);
  margin: 2rem auto;
  backdrop-filter: blur(2px);
  width: 15%;
  border-radius: 100%;
}