:root {
    --main-color:#bbbbbb; 
    --second-color:#5f5f5f; 
    --third-color:#b8b8b8; 
    --main-title-color: #b8b8b8;
    --logo-bg-color: #570505;
    --main-bg-color: #000000;
    --second-shadow-color: #5e5e5b;
    --filter-shadow-color: #DEEBFF;
    --hover-color:#DEEBFF;
}

* {    
    font-family: 'Work Sans', sans-serif;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;    
   
}

body {
    font-family: system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    margin: 0;    
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100dvh;    
    font-size: 14px;
    color: var(--main-color);   
    background-image: url('../assets/images/bg.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--main-bg-color); 
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button, input, textarea {
  border: none;
  outline: none;

}

/* */

main {
    width: 100%;
}

h1{
	display: flex;
	flex-direction: column;	
	font-weight: 800;
	color: var(--main-title-color);
    letter-spacing: 2px;
}

h1 > span {
	font-size:10px;
	letter-spacing: 0.1em;
}

h2{
	font-weight: 700;
	font-size: 30px;
	color: var(--second-color);
}

h3 { 
    font-size: 15px;  
    color: var(--third-color);  
}

.main-container {
    width: 100%;
    min-width: 340px;
    max-width: 1440px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    margin-bottom: 10px;
    font-size: clamp(0.5rem, 2vw + 1rem, 4rem);
    text-shadow: 0 0 5px var(--second-shadow-color), 0 0 15px var(--second-shadow-color);
    width: 50%;
}


header {
    margin: auto;
    width: 67%;
    display: flex;
    justify-content: space-between;

}  

a, a:visited {
    color:var(--second-shadow-color);
}

nav ul {
	display: flex;
	align-items: center;
}

nav li {
	padding: 10px 10px;
	font-size: 1.2em;
    cursor: pointer;
}

nav li:hover {
    padding-top: 7px;
    border-top: var(--hover-color) solid 3px;    
}

nav li:hover a {
    color: var(--hover-color);    
}


.footer-container {
    color: var(--main-title-color);
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

@media (max-width: 767.98px) {

	header {
		flex-direction: column-reverse;
		justify-content: center;
	}

    .title {
        width: 100%;
    }
}