@font-face {
  font-family: 'Roboto-Regular';
  src: url('fonts/Roboto-Regular.ttf');
}




/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global styles */
 /* Global styles */


body {
  font-family: Arial, sans-serif;
  background-image: url('homepage_background3.png');
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  position: relative; /* Add this line to make the body a positioning context */
  height: 100vh; /* Set the height of the body to 100vh */
  background-color: rgba(0, 0, 0, .5);
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5); /* Adjust the alpha value to control the darkness */
  z-index: -1;
  background-image: url('homepage_background3.png');
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  filter: brightness(.5);
  
}
  
  header {
    background-color: rgba(0, 0, 0, 0); 
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  


  
  h1 {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;

  }
  
  h1 span {
    font-weight: bold;
  }
  
  nav {
    background-color: rgba(0, 0, 0, 0); ;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  nav li {
    text-align: center;
  }

  nav li:last-child {
    border-right: none;
  }
  
  
  nav li a {
    display: inline-block;
    padding: 10px 30px;
    font-size: 20px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border: 2px solid black;
    transition: background-color 0.5s ease;
    background-color: gray;
  
  }
  
  nav li a:hover {
    background-color: #006666;
  }
  
  main {
    padding: 20px;
  }
  
  section {
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 36px;
    text-decoration: underline;
  }

  h4,h3 {
    font-size: 20px;
    outline-width: 10px;
    padding-bottom: 5px;
  }
  
  .project {
    margin-bottom: 20px;
  }

  .project h3 {
  margin-top: 12px;
}

  .project img {
    max-width: 100%;
  }
 
  
  .tab {
    display: none;
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  
  .tab.active {
    display: block;
  }
  
  video {
    max-width: 100%;
    height: auto;
    width: 80%;
    margin: 0 auto;
    display: block;
}

#about-me p{
  font-family: 'Georgia', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: justify;
  padding: 10px;
  text-shadow: -2px -2px 0 rgb(0, 0, 0), 
  2px -2px 0 rgb(0, 0, 0),
  -2px 2px 0  rgb(0, 0, 0),
  2px 2px 0  rgb(0, 0, 0);
  color: white;
 
  border-radius: 5px;
  background-color: rgba(192, 192, 192, 0); /* Set the background color with transparency */
}

#about-me h2{
  padding-bottom: 8px;
}
.contact-links {
  display: flex;
  flex-direction: horizontal;
  justify-content: center;
  margin-top: 30px;
  text-shadow: -2px -2px 0 rgb(0, 0, 0), 
  2px -2px 0 rgb(0, 0, 0),
  -2px 2px 0  rgb(0, 0, 0),
  2px 2px 0  rgb(0, 0, 0);
  
}

.contact-links ul {
  padding-left: 0;
  
  
}

.contact-links li {
  list-style: armenian;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  font-size: 24px;
  padding-right: 18px;
  font-style: italic;
}

.contact-links li:before {
  content: "•";
  margin-right: 10px;
}

#email {
  font-size: 20px;
}

#contact-me h2{
  padding-bottom: 24px;
}

#contact-me p{
  font-size: 30px;
  font-style: italic;
  text-shadow: -2px -2px 0 rgb(0, 0, 0), 
  2px -2px 0 rgb(0, 0, 0),
  -2px 2px 0  rgb(0, 0, 0),
  2px 2px 0  rgb(0, 0, 0);
  color: white;

  
}

.project-two h4{
  padding-top: 20px;
  font-size: 28px;
  text-decoration: underline;
}




.black-bar {
  background-color: black;
  height: 2px;
  margin: 20px 0; /* Adjust the margin value to control the spacing around the black bar */
}

.project-two h5{
  margin-top: 15px;
  margin-bottom: 2px;
  font-size: 20px;
  font-style: italic;

}

#covid-project-description {
  font-size: 16px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  border: 1px solid #000;
  width: 775px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 20px;
}

/* ... Your existing CSS styles ... */

#technologies-header {
  font-style: italic;
  text-align: center;
  margin-bottom: 5px; 
  font-size: 15px;
  text-decoration: underline;
}

#technologies-list {
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin: 0 auto;
  max-width: 500px;
  padding: 0;
  margin-bottom: 10px;
}

/* Your existing CSS styles go here */

.tab {
  display: none;
}

.tab.active {
  display: block;
}


nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav li {
  text-align: center;
}

nav li:not(:last-child) {
  margin-right: 20px; /* Adjust the spacing between tabs by modifying the value */
}



header {
  background-color: rgba(0, 0, 0, 0);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px; /* Add this line to create spacing between header and navigation bar */
}

nav {
  background-color: rgba(0, 0, 0, 0);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* Add this line to create spacing between header and navigation bar */
}


nav li a {
  background-color: #ffffff;
  display: inline-block;
  padding: 10px 30px;
  font-size: 20px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  border: 2px solid black;
  outline: 2px solid black;
  transition: background-color 0.5s ease;
  -webkit-text-stroke: 1px rgb(0, 0, 0); /* Add this line to create an outline */
}

nav li a:hover {
  background-color: #006666;
  color: black;
  text-shadow: 2px 2px 2px black;
}

.default-nav a {
  font-size: 24px; /* Adjust the font size to make the nav icons larger on the default page */
  padding: 10px 30px;
  border: 4px solid black;
}


.default-header {
  transform: translateY(200%);
  
}

.outline-effect {
  color: white; /* Set the color of the text */
  text-shadow: -3px -3px 0 black, 
                3px -3px 0 black,
                -3px 3px 0 black,
                3px 3px 0 black; /* Apply multiple shadows to create the outline effect */
}



#projects p {
  color: white;
  text-shadow: -2px -2px 0 rgb(0, 0, 0), 
                2px -2px 0 rgb(0, 0, 0),
                -2px 2px 0  rgb(0, 0, 0),
                2px 2px 0  rgb(0, 0, 0);
  
  font-size: 22px;
  outline: none;
  

}

#covid-project-description{
  outline: none;
  border: none;
}
#technologies-header{
 font-size: 28px;
 padding-bottom: 15px;
}
#technologies-list{
  color: rgb(255, 255, 255);
  background-color: none;
  text-shadow: -2px -2px 0 rgb(0, 0, 0), 
  2px -2px 0 rgb(0, 0, 0),
  -2px 2px 0  rgb(0, 0, 0),
  2px 2px 0  rgb(0, 0, 0);
  text-decoration: underline;
  font-size: 20px;
}
#projects h1,h2,h3,h4,h5,h6 {
  color: #ffffff;


  text-shadow: -2px -2px 0 rgb(0, 0, 0), 
  2px -2px 0 rgb(0, 0, 0),
  -2px 2px 0  rgb(0, 0, 0),
  2px 2px 0  rgb(0, 0, 0);
  font-size: 30px;
}

.project-two h4{
  font-size: 30px;
}
.project-two h5{
  font-size: 28px;
}
.project h5{
  font-size: 28px;
  font-style: italic;
}

h2{
  font-size: 40px;
}

.about-me p {
  background: none;
  
}

#email {
  font-size: 40;
  
}

.tab {
  height: auto;
}

.overlay {
  display: none;
}

.tab {
  display: flex;
  flex-direction: column;
}

body {
  position: relative;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value to control the darkness */
  z-index: 9999;
  pointer-events: none; /* Allow click events to pass through the overlay */
  background-image: url('homepage_background3.png');
}

body {
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body::before {
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value to control the darkness */
  z-index: -1;
}

body::after {
  background-color: transparent; /* Set the background color of the overlay */
  pointer-events: none; /* Allow click events to pass through the overlay */
}


#contact-me p, #contact-me li{
  
  color: rgb(255, 255, 255);
  background-color: #464343;
  

}

#contact-me p{
  padding: 5px; /* Adjust the padding value as needed */
  margin: 0 auto; /* Centers the paragraph horizontally */
  max-width: 570px;
}




.default-nav {
  transform: translateY(175%);
}




/* CSS animation for typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* CSS class to apply typing effect */
.typing-effect {
  overflow: hidden;
  white-space: nowrap;
  animation: typing 4s steps(40) forwards;
}


/* CSS */
.hidden {
  visibility: hidden;
}


  

body {
  background-image: url('homepage_background3.png'); /* Path to your background image */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

  #projects h2{
    padding-bottom: 10px;
  }

@media only screen and (max-width: 767px) {
  /* Apply different background styles for devices with a maximum width of 767px */
  body {
    background-color: transparent; /* Set the background color to transparent */
  }
  
  body::after {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('homepage_background3.png'); /* Replace 'path-to-your-custom-background-image.png' with the correct file path to your image */
    background-repeat: no-repeat; /* Prevent the background image from repeating */
    background-position: center center; /* Center the background image */
    background-size: cover; /* Adjust the background image sizing */
  }
}

#overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('homepage_background3.png'); /* Replace with your background image URL */
  background-size: cover;
  background-position: center;
    
  z-index:-1 ;
  filter: brightness(0.5); /* Initial brightness filter */

}

