/*@import url('https://fonts.googleapis.com/css?family=lato&dispay=swap');*/

@font-face
{
    font-family:				WebsiteFont;
    src:						url(/Resources/Fonts/CourierPrime/CourierPrime-Regular.ttf);
}

:root {
    --main-color: #3864f3; /*Główny kolor*/
    --secondary-color: rgb(99, 120, 241); /*Kolor akcentowy*/
    --bg-color: #ffffff; /*Kolor tła*/
    --text-color: #050505; /*Kolor zwykłego tekstu*/
    --text-on-main-color: #e9e9e9; /*Kolor tekstu na tle głównego koloru*/
    font-size: calc(12px + 0.390625vw);

    --scrollbar-width: 15px; /*DO ZMIANY NA SKRYPT DODAJĄCY ZMIENNĄ*/
}
html{
    scroll-behavior: smooth;
    position: absolute;
    color: var(--text-color);
    overflow-x: hidden;
	width:100%;
	height:100%;
}
body{
    /*font-family: 'Lato', sans-serifs;*/
	/*font-family: WebsiteFont;*/
    background-color: var(--bg-color);
    width: calc(100vw - var(--scrollbar-width));
}
strong{
    color: var(--secondary-color);
    font-weight: 600;
}
a{
    color: var(--secondary-color);
    text-decoration: none;
    transition: 0.3s;
}
a:hover{
    color: var(--text-color);
    transition: 0.3s;
}
header {
    background-color: var(--main-color);
    position: sticky;
    top: 0;
    left: 0;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: var(--text-on-main-color);
    letter-spacing: 0.4px;
    z-index: 1;
    width: 100vw;
    justify-content: center;
    align-items: center;
}
header a{
    color: var(--text-on-main-color);
    text-decoration: none;
}
body{
    margin:0;
	width:100%;
	padding:0;
	display:flex;
	flex-direction:column;
}
footer{
    background-color: var(--main-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-on-main-color);
}
footer .contact{
    display: flex;
    flex-direction: row;
    gap: 25vw;
}
footer h2{
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}
footer .line{
    height: 1px;
    width: calc(100vw - var(--scrollbar-width));
    background-color: var(--bg-color);
}
footer a:hover{
    color: var(--text-on-main-color);
}
.container{
    padding-left: 100px;
	padding-right: 100px;
	padding-top: 30px;
	padding-bottom: 30px;
    letter-spacing: 0.2px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 40vh;
	height:100%;
}
.container h1{
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.6rem;
    padding-bottom: 20px;
    text-align: center;
}
.container h2{
    font-size: 1rem;
    font-weight: 650;
    text-align: center;
    padding-top: 20px;
    margin-bottom: -5px;
}
@media (max-width: 700px){
    .container{
        padding: 40px;
    }
}
.menu-item {
    display: flex;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    transition: color 0.5s;
    font-size: 0.75rem;
    text-transform: uppercase;
    height: 25%;
}
.menu-item:hover a{
    color: var(--secondary-color);
    transition: color 0.5s;
}
.cog1{
    position: fixed;
    z-index: 100;
    top: -148px;
    left: -128px;
}
.cog1 path{
    fill: var(--secondary-color);
}
.cog2{
    position: fixed;
    z-index: 100;
    top: -50px;
    right: -148px;
}
.cog2 path{
    fill: var(--secondary-color);
}
.cog3{
    position: fixed;
    z-index: 100;
    top: 50vh;
    left: -160px;
}
.cog3 path{
    fill: var(--secondary-color);
}
.header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 60px;  /* lub inna dopasowana wartość */
  height: auto;
}