/* Default color palete for the website */
:root {
	--color-white: hsl(0, 0%, 100%);
	--color-light: hsl(206, 33%, 96%);
	--color-black: hsl(0, 0%, 0%);
    --color-black-2:hsl(0, 0%, 12.5%);
	--color-night: hsl(214, 100%, 10%);
    --color-beige:hsl(40, 30%, 85%);
	--shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Michroma ;
	color: var(--color-beige);
}
*, *::before, *::after {
	padding: 0;
	margin: 0;
	box-sizing: inherit;
	list-style: none;
	list-style-type: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
html {
	font-size: 100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
    background-color: var(--color-black);
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* padding: 10px; */
    transition: all 0.4s ease;
    border-style:solid;
    border-color: rgba(245, 245, 220, 0.692);
    border-top: 0dvh;
    border-left: 0dvh;
    border-right: 0dvh;
}

.container{
display: flex;
}
nav.sticky{
    /* padding: 15px 20px; */
    background: hsl(0, 0%, 12.5%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

}
nav .nav-content{
    height: 100%;
    max-width: auto;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* nav .logo a{
    font-weight: 900;
    font-size: 20px;
    color: beige;
} */
nav.sticky.logo a{
    color: black;
}
.nav-content .nav-links{
    display: flex;
}
.nav-content .nav-links li{
    list-style: none;
    margin: 0 10px;
}
.nav-links li a{
    text-decoration: none;
    color: beige;
    font-size: 20px;
    font-weight: 500;
    /* padding: 10px 50px; */
    transition: all 0.3s ease;
}

.nav-links li a:hover{
    color: grey;
}
nav.sticky .nav-links li a{
    color: beige;
    transition: all 0.4s ease;
}
nav.sticky .nav-links li a:hover{
    color: grey;
}


  /* footer {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    transition: all 0.4s ease;
    background-color: hsl(0, 0%, 12.5%);
    text-decoration: none;
    
}
footer .text-foot{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    align-items: center;
}
h2{
    font-size: 20px;
    margin-bottom: 2px;
    color: beige;
}
.text-foot{
    display: flex;
    align-items: center;
    text-align: justify;
    padding: 10px 60px;
}

footer .center-footer{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    font-size: 19px;
}
 footer a{
    color: beige;
 }
 footer .right-footer{
    font-size: 45px;
 }
 footer .right-footer .git{
    position: relative;
    top: 15px;
 }
 .right-footer a {
    text-decoration: none;
    transition: 0.5s;
  }
  
  .right-footer:hover {
    transform: scale(1.2);
  } */
