@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/vt323');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "courier new";
}
:root {
    --bg-color: #0a0e17;
    --bg-secondary: #111827;
    --text-color: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent-green: #4ade80;
    --accent-red: #f87171;
    --accent-blue: #38bdf8;
    --card-bg: rgba(17, 24, 39, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
}
body{
  color: #fff;
  position: relative;
}
.container{
  width: 100%;
  padding-top: 35px;
  padding-left: 8%;
  padding-right: 8%;
}
/* Header */
#year-selector {
    display: flex;
    background-color: var(--bg-secondary);
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0;
}

#year-selector li {
    list-style: none;
    font-size: 1.3rem;
}

#year-selector a {
  text-decoration: none;
}

#year-selector a:hover {
   color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

#year-selector a.active {
    background-color: var(--accent-green);
    color: var(--bg-color);
    border-radius: 5px;
    padding: 0 5px;
}

nav{
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav ul li{
  display: inline-block;
  list-style: none;
  margin: 10px 15px;
}
nav ul li a{
  text-decoration: none;
  transition: 0.5s;
}
nav ul li a:hover{
  color: #f9004d;
}
.logo a{
  font-family: "VT323", monospace;
  font-size: 60px;
  text-decoration: none;
}
span{
  font-family: "VT323", monospace;
  color: #ff1818;
}
nav ul li{
  display: inline-block;
  list-style: none;
  margin: 10px 15px;
}
nav ul li a{
  text-decoration: none;
  transition: 0.5s;
}
nav ul li a:hover{
  color: #f9004d;
}
.login{
  text-decoration: none;
  margin-right: 15px;
  font-size: 18px;
}
.btn{
  background: #000;
  border-radius: 6px;
  padding: 9px 25px;
  text-decoration: none;
  transition: 0.5s;
  font-size: 18px;
}

.content{
  text-align: justify;
  text-justify: inter-word;
  margin-top: 2%;
  max-width: 700px;
}
.content h2{
  font-size: 60px
}
.content p{
  margin-top: 10px;
  line-height: 25px;
}

a{
  color: #fff;
}
.link {
  margin-top: 30px;
  padding-bottom: 35px;
}
.hire{
  color: #000;
  text-decoration: none;
  background: #fff;
  padding: 9px 25px;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.5s;
}
.link .hire:hover{
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
#particles-js {
  width: 100%;
  position: relative;
  padding-bottom: 104px;
}
.particles-js-canvas-el {
	background: #10251E;
    position: fixed;
    top: 0;
    z-index: -1;
}
#block_container
{	
	display: flex;
    justify-content: center;
}
#block1, #block2
{
    display:inline;
}
#block2{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10%;
}

.aboutContent{
  text-align: justify;
  text-justify: inter-word;
  margin-top: 2%;
  max-width: 1100px;
}
.aboutContent h2{
  font-size: 60px
}
.aboutContent p{
  margin-top: 10px;
  line-height: 25px;
}




@media all and (max-width: 768px) {
  h1 {
    font-size: calc(1.5rem * var(--smaller));
  }
  
  li {
    font-size: calc(1.125rem * var(--smaller));
  }
  
  li span {
    font-size: calc(3.375rem * var(--smaller));
  }
}
#countdown li {
  display: inline-block;
  font-size: 2em;
  list-style-type: none;
  padding: 1em;
  text-transform: uppercase;
}

#countdown li span {
  display: block;
  font-size: 6.5rem;
}


/* Mobile Styles */
@media screen and (max-width: 768px) {
  body {
    font-size: 16px; /* Adjust font size for better readability on mobile */
  }

  .container {
    padding: 20px; /* Add some padding for better spacing on mobile */
  }

  .logo {
    text-align: center; /* Center the logo on mobile */
  }

  .logo a {
    font-size: 40px; /* Reduce logo font size on mobile */
  }

  nav ul {
    text-align: center; /* Center the navigation menu on mobile */
    padding-top: 20px; /* Add spacing between logo and menu */
  }

  nav ul li {
    display: block; /* Make menu items stack vertically */
    margin: 10px 0; /* Add spacing between menu items */
  }

  .content {
    text-align: justify;
    text-justify: inter-word;
    margin-top: 10%;
    max-width: 90%; /* Make content width smaller on mobile */
    margin: 0 auto; /* Center align content on mobile */
  }

  .content h2 {
    font-size: 40px; /* Reduce heading font size on mobile */
  }

  /* Adjust countdown font size on mobile */
  #countdown li {
    font-size: 1.5em;
  }

  /* Adjust countdown digit font size on mobile */
  #countdown li span {
    font-size: 3.5rem;
  }


  /* Ensure elements within #block_container stack vertically */
  #block_container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Adjust spacing between #block1 and #block2 */
  #block1, #block2 {
    margin-bottom: 20px;
  }
}
@media (min-height: 1100px) {
  body {
    width: 100%;
    height: 100vh;
    margin: 0px;
  }
}