/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  background-color: #1a1b26;
  /* Tokyo Night Dark Blue Background */
  color: #c0caf5;
  /* Light Blue Foreground Text */
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/wallpaper.png');
  /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  /* Adjust the opacity of the background image */
  z-index: -1;
  /* Place it behind the content */
}

/* Links */
a {
  color: #7dcfff;
  /* Cyan for links */
  text-decoration: none;
}

a:hover {
  color: #73daca;
  /* Green when hovering over links */
}

/* Header */
header {
  background-color: #1a1b26;
  /* Dark background */
  color: #c0caf5;
  /* Light text */
  padding: 1rem;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-right: 1rem;
}

nav ul li a {
  color: #7dcfff;
  /* Cyan links in navigation */
}

nav ul li a:hover {
  color: #9d7cd8;
  /* Purple on hover */
}

/* Section Headers */
h2 {
  color: #7aa2f7;
  /* Yellow for section headers */
  border-bottom: 2px solid #7dcfff;
  /* Cyan underlines for section titles */
  padding-bottom: 0.5rem;
}

/* Buttons */
button {
  background-color: #f7768e;
  /* Red button background */
  color: #1a1b26;
  /* Dark text on button */
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #9d7cd8;
  /* Purple when hovering over button */
}

/* Footer */
footer {
  background-color: #1a1b26;
  color: #c0caf5;
  text-align: center;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  bottom: 0;
}

/* Custom Classes */
.accent {
  color: #7dcfff;
  /* Cyan accent class */
}

.highlight {
  color: #73daca;
  /* Green highlight class */
}

/* Ensure the body and html take up the full height */
html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container styles */
.container {
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Centers vertically */
  height: 100vh;
  /* Full viewport height */
  width: 100vw;
}

/* Middle content to be centered inside the container */
.middle {
  display: flex;
  justify-content: flex-start;
  /* Center content horizontally */
  align-items: center;
  /* Center content vertically */
  flex-direction: column;
  /* Stack elements vertically */
  text-align: left;
  background-color: #24283b;
  border: 2px solid #7dcfff;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  max-width: 800px; /* Max width to prevent it from getting too wide on large screens */
  min-width: 300px; /* Minimum width for smaller screens */
  max-height: 900px; /* Max width to prevent it from getting too wide on large screens */
  overflow-y: auto;
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}
.middle::-webkit-scrollbar {
  display: none; /* Hide scrollbar in WebKit browsers (Chrome, Edge, Safari) */
}
