/* CSS styles go here */
/* Importing the Space Grotesk font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
/* CSS styles go here */
html,
body {
    background-color: #14213d;
    font-family: 'Space Grotesk', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
a,
a:link,
a:visited,
a:active {
  text-decoration: none;
  cursor: pointer !important;
  color: #fca311;
}

a:hover {
  cursor: pointer !important;
  text-decoration: line-through;
  color: #e5e5e5;
}

#home,
#contact,
#projects,
#plug {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#home {
	color: white;
    font-size: 70px;
    margin: 50px;
    display: flex;
    flex-direction: column;
}

#contact {
    color: white;
	font-size: 70px;
    margin: 50px;
}
#contact h2{
    font-size: 40px;
}
#projects {
    position: relative;
    color: white;
    background-color: #000000;
    font-size: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    position: relative;
  }
  
  .container img {
    max-width: 100%;
    height: auto;
  }
  
  .text-overlay {
    position: absolute;
    top: 70%;
    left: -100px;
    transform: translateY(0%);
    z-index: 1;
    padding: 5px;
    font-weight: bold;
  }

#plug{
    color: white;
    margin: 50px;
    display: flex;
    flex-direction: column;
}


#plug .main-plug{
    font-size: 70px;
}

#plug .repo-plug{
    font-size: 30px;
    bottom: 0;
}



/* Media queries for responsive font size */
@media only screen and (min-device-width: 0px) and (max-device-width: 900px) {
    #home,
    #contact,
    #plug {
	   font-size: 50px;
	   /*color: blue;*/
    }
    #contact h2{
        font-size: 20px;
    }
    #projects {
        flex-direction: column;
        font-size: 80px;
    }
    .text-overlay {
        position: static;
        transform: translateY(0);
        z-index: 0;
        background-color: transparent;
        padding: 0;
    }
    #plug .main-plug{
        font-size: 50px;
    }
    #plug .repo-plug{
        font-size: 20px;
        bottom: 0;
    }
}

@media (max-width: 480px) {
    /* For screens up to 480px wide */
    #home,
    #contact,
    #plug {
        font-size: 30px;
		/*color: green;*/
    }
    #contact h2{
        font-size: 20px;
    }
    #projects {
        flex-direction: column;
        font-size: 50px;
    }
    .text-overlay {
        position: static;
        transform: translateY(0);
        z-index: 0;
        background-color: transparent;
        padding: 0;
    }
    #plug .main-plug{
        font-size: 30px;
    }
    #plug .repo-plug{
        font-size: 10px;
        bottom: 0;
    }
    
}

@media (max-width: 320px) {
    #home,
    #contact,
    #plug {
        font-size: 20px;
		/*color: green;*/
    }
    #contact h2{
        font-size: 10px;
    }
    #projects {
        flex-direction: column;
        font-size: 25px;
    }
    .text-overlay {
        position: static;
        transform: translateY(0);
        z-index: 0;
        background-color: transparent;
        padding: 0;
    }
    #plug .main-plug{
        font-size: 23px;
    }
    #plug .repo-plug{
        font-size: 10px;
        bottom: 0;
    }
    
}