html, body {
  height: 100%;
  margin: 0;
  background-color: #090909; 
  font-family: "DM Mono", monospace;
  color: #ffffff; 
}

.Main {
  max-width: 800px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}

.Main h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.Main p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.Link {
  text-decoration: none;
  color: #a3a3a3;
  font-family: "DM Mono";
  display: block;
}

.Main a:hover {
  text-decoration: none;
}

.SocialButton:hover, .TopButton:hover, .Languages:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.TopBar, .Socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
  margin-top: 30px;
}

.TopButton, .SocialButton, .Languages {
  border: none;
  border-radius: 15px;
  background-color: #171717;
  color: #a3a3a3;
  font-family: "DM Mono";
  font-style: normal;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  text-decoration: none;
  cursor: default;
}

.glowflag {
  font-size: 60px;
  color: white;
  text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff0000;
}

.LanguageContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;        
  justify-content: center;
  padding-bottom: 20px;
}

.Separator {
  height: 5px;
  background: linear-gradient(90deg, #ff6f61, #ffca28, #4caf50, #2196f3, #9c27b0);
  background-size: 300% 300%;
  animation: SeperatorAnimation 10s ease infinite;
  border-radius: 10px;
  margin: 20px 0;
}

.ProjectsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding-bottom: 40px;
}

.ProjectCard {
  background-color: #171717;
  border-radius: 15px;
  padding: 15px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nicered {
  color: #ff3333;
}

.ProjectCard:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

.ProjectImage {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.ProjectTitle {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button a,
button a:hover {
  text-decoration: none !important;
}

.Languages button {
  background: none;
  border: none;
  padding: 0;
}

.ProjectVideo {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.ProjectDescription {
  font-size: 1rem;
  color: #a3a3a3;
  line-height: 1.4;
}

@keyframes SeperatorAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
