@import url('https://fonts.googleapis.com/css?family=Tangerine&display=swap');
@font-face {
    font-family: 'diwani';
    src: url('diwani.ttf');
}
@font-face {
  font-family: 'farsi';
  src: url('farsi.ttf');
}

.background {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: beige;
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(0px); 
    z-index: -1; 
  }
  
  body {
    display: flex; 
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; 
    align-items: center; 
    height: 100vh;
    margin: 0;
  }
  
  h1.a-404 {
    margin-bottom: 10px;
    font-size: 2.4em;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  h1.f-404 {
    margin: 0;
    font-size: 1.2em;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  h1.b {
    margin: 0;
    margin-bottom: -3px;
    font-size: 2.8em;
    font-family: 'diwani';
  }
  h1.c {
    margin: 0;
    margin-bottom: 0px;
    font-size: 3em;
    position: relative;
    font-family: 'farsi';
    bottom: -10px;
  }

  body.fa{
    position: relative;
    top: -23px;
  }
  /* New styles for the container that holds the three links */
  .link-container {
    display: flex;
    justify-content: space-evenly; /* Even spacing between items */
    width: 300px;                  /* Choose a width suitable for your layout */
    margin-top: 20px;             /* Spacing above the links if desired */
  }
  

  .link-container a {
    text-decoration: none;
    color: black;
    font-size: 1em;
  }

  .link-container a:hover {
    text-decoration: underline; /* Underline on hover */
    color: darkblue;            /* Change color on hover for better visibility */
}
  /* Remove or adjust these if you don’t need them
     specifically for left/center/right. */
  a.github {
    text-align: center;
  }
  
  a.resume {
    text-align: center;
  }
  
  a.linkedin {
    text-align: center;
  }
  

  .lang-container {
    display: flex;
    justify-content: space-evenly; /* Even spacing between items */
    width: 300px;                  /* Choose a width suitable for your layout */
    margin-top: 20px;             /* Spacing above the links if desired */
  }
  
  .lang-container a {
    text-decoration: none;
    color: black;
    font-size: 1em;
  }

  .lang-container a:hover {
    text-decoration: underline; /* Underline on hover */
    color: darkblue;            /* Change color on hover for better visibility */
}