:root {
    --mainColor:#eaeaea;
	--secondaryColor:#fff;

    --borderColor:#c1c1c1;

    --mainText:black;
    --secondaryText:#4b5156;

    --themeDotBorder:#24292e;

    --previewBg:rgb(251, 249, 243, 0.8);
    --previewShadow:#f0ead6;

    --buttonColor:black;

    --socialColor: black;
}



html, body {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body *{
    transition: 0.3s;
}

h1, h2, h3, h4, h5, h6, strong {
    color: var(--mainText);
    font-family: 'Russo One', sans-serif;
    font-weight: 500;
}

p, li, span, label, input, textarea {
    color: var(--secondaryText);
    font-family: 'Roboto Mono', monospace;
}

a {
    font-family: "Roboto Mono", monospace;
    text-decoration: none;
    /* color: #17a2b8; */
    color: var(--socialColor);
}

ul {
    list-style: none;
}

h1 { font-size: 56px;}
h2 { font-size: 36px;}
h3 { font-size: 28px;}
h4 { font-size: 24px;}
h5 { font-size: 20px;}
h6 { font-size: 16px;}

.s1 {
    background-color: var(--mainColor);
    border-bottom:1px solid var(--borderColor);
    overflow: auto;
}

.s2 {
    background-color: var(--secondaryColor);
    border-bottom:1px solid var(--borderColor);
    overflow: auto;
}

.main-container {
    width: 1200px;
    margin: 0 auto;
}

.greeting-wrapper {
    display: grid;
    text-align: center;
    align-content: center;
    min-height:10em ;
}

.intro-wrapper {
    background-color: var(--secondaryColor);
	border:1px solid var(--borderColor);
    border-radius: 5px 5px 0 0;


	-webkit-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        'nav-wrapper nav-wrapper'
        'left-column right-column'
    ;
}

.posts-wrapper {
    background-color: var(--mainColor);
}

#navigation {
    margin:0;
    padding: 10px;
}

#navigation li{
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.dots-wrapper {
    display: flex;
    padding: 10px;
}

#dot-1 {
    background-color: #FC6058;
}

#dot-2 {
    background-color: #FEC02F;
}

#dot-3 {
    background-color: #2ACA3E;
}


.browser-dot {
    background-color: black;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    margin: 5px;

    -webkit-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
}

.nav-wrapper {
    border-radius: 5px 5px 0 0;
    grid-area: nav-wrapper;
    border-bottom: 1px solid var(--borderColor);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--mainColor);
}

#navigation a{
    color: var(--mainText);
}

.left-column {
    grid-area: left-column;
    padding-top: 50px;
    padding-bottom: 50px;
}

#profile_pic {
    display: block;
    margin: 0 auto;

    height: 200px;
    width: 200px;
    object-fit: cover;
    border: 2px solid var(--borderColor);
}

#theme-options-wrapper {
    display: flex;
    justify-content: center;
}

.theme-dot {
    height: 30px;
    width: 30px;
    background-color: black;
    border-radius: 50%;

    margin: 5px;
    border: 2px solid var(--themeDotBorder);

    -webkit-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);

    cursor: pointer;
}

.theme-dot:hover {
    border-width: 5px;
}


#light-mode {
    background-color: #fff;
}

#blue-mode {
    background-color: #192734;
}

#green-mode {
    background-color: #78866b;
}

#purple-mode {
    background-color: #7E4C74;
}

#settings-note {
    font-size: 12px;
    font-style: italic;
    text-align: center;
}

.right-column {
    grid-area: right-column;
    display: grid;
    align-content: center;

    padding-top: 50px;
    padding-bottom: 50px;
}


#preview-shadow {
    background-color: var(--previewShadow);
    width: 300px;
    height: 180px;
    padding-left: 30px;
    padding-top: 30px;
}

#preview {
    width: 300px;
    border: 1.5px solid #17a2b8;
    background-color: var(--previewBg);
    padding: 15px;
    position: relative;
}

.corner {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1.5px solid #17a2b8;
    background-color: #fff;
    position: absolute;
}

#corner-tl {
    top: -5px;
    left: -5px;
}

#corner-tr {
    top: -5px;
    right: -5px;
}

#corner-br {
    bottom: -5px;
    right: -5px;
}

#corner-bl {
    bottom: -5px;
    left: -5px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    padding-bottom: 50px;
    padding-top: 50px;
    gap: 100px;
}

#skills {
    display: flex;
    justify-content: space-evenly;
    background-color: var(--previewShadow);
}

.social-links {
    display: grid;
    align-content: center;
    text-align: center;
}
/*doesnt work*/
/*#social_img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
    margin-left: 140px;
}*/

.socials-wrapper {
    display: flex;
    align-content: center;
    justify-content: space-evenly;

    
}

.icon:hover{
    transform: scale(1.2);
}


/*asdsad*/
/*.post-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, 320px);
    gap: 20px;
    justify-content: center;
    padding-bottom: 50px;
}


.post {
    border: 1px solid var(--borderColor);

    -webkit-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
	box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
    border-radius: 10px;
    cursor: pointer;

}

.post:hover {
    transform: scale(1.05);
  }
  

.thumbnail {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/*.thumbnail:hover {
    height: 300px;
}*/

/*.post-preview {
    background-color: #fff;
    padding: 15px;
    border-radius: 0px 0px 10px 10px;
    background-color: var(--previewBg);
  }

.post-title {
    color: var(--mainText);
    margin: 0;
}

.post-intro {
    color: #4b5156;
    font-size: 14px;
}*/
.post-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, 320px);
    gap: 20px;
    justify-content: center;
    padding-bottom: 50px;
  }
  
  .post {
    border: 1px solid var(--borderColor);
    -webkit-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
    box-shadow: -2px 7px 21px -9px rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    cursor: pointer;
  }
  
  .post:hover {
    transform: scale(1.05);
  }
  
  .thumbnail {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
  }
  
  .post-preview {
    background-color: #fff;
    padding: 15px;
    border-radius: 0px 0px 10px 10px;
    background-color: var(--previewBg);
  }
  
  .post-title {
    color: var(--mainText);
    margin: 0;
  }
  
  .post-intro {
    color: #9ca1a5;
    font-size: 14px;
  }
  

#contact-form{
	display: block;
	max-width: 600px;
	margin: 0 auto;
	border: 1px solid var(--borderColor);
	padding: 15px;
	border-radius: 5px;
	background-color: var(--mainColor);
	margin-bottom: 50px;

}

#contact-form label{
	line-height: 2.7em;
}

#contact-form textarea{
	min-height: 100px;
	font-size: 14px;
}


.input-field{
	width: 100%;
	padding-top: 10px;
	padding-bottom:10px; 
	background-color: var(--secondaryColor);
	border-radius: 5px;
	border:1px solid var(--borderColor);
	font-size: 14px;
}


#submit-btn{
	margin-top: 10px;
	width: 100%;
	padding-top: 10px;
	padding-bottom:10px; 
	color: #fff;
	background-color: var(--buttonColor);
	border:none;
}

/*cookie box*/
.wrapper{
    position: absolute;
    bottom: 30px;
    position: fixed;
    left: 30px;
    max-width: 365px;
    background: #fff;
    padding: 25px 25px 30px 25px;
    border-radius: 15px;
    box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
    text-align: center;

}

.wrapper.hide{
    opacity: 0;
    pointer-events: none;
    /*transform: scale(0.8);
    transition: all 0.3s ease;*/
}
  
::selection{
    color: #fff;
    background: var(--socialColor);
}
  
.wrapper img{
    max-width: 90px;
}
  
.content header{
    font-size: 25px;
    font-weight: 600;
}

.content{
    margin-top: 10px;
}
  
.content p{
    color: #858585;
    margin: 5px 0 20px 0;
}
 
.content .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.buttons button{
    padding: 10px 20px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    /*background: #FCBA7F; cool color*/
    background: var(--socialColor);
    cursor: pointer;
    transition: all 0.3s ease;
}
  
.buttons button:hover{
    transform: scale(0.97);
}
  
.buttons .item{
    margin: 0 10px;
}
  
.buttons a{
    color: var(--socialColor);
}

/*Scroll Bar*/

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}
  ::-webkit-scrollbar-thumb {
    background: var(--socialColor);
    border-radius: 0px;
}
  ::-webkit-scrollbar-thumb:hover {
    background: var(--socialColor);
}
  ::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 11px;
}



@media screen and (max-width: 1200px){
	.main-container{
		width: 95%;
	}

    .socials-wrapper {
        display: grid;
        gap: 50px;
        justify-content: center;
        padding-bottom: 50px;
    
        
    }

    .icon {
        transform: scale(2);
    }
}


@media screen and (max-width: 800px) {
        .intro-wrapper {
            grid-template-columns: 1fr;
            grid-template-areas: 
                'nav-wrapper'
                'left-column'
                'right-column'
            ;
        }

    .right-column {
        justify-content: center;
    }

    .socials-wrapper {
        gap: 70px;
    }

    .icon {
        transform: scale(3);
    }
}

@media screen and (max-width: 400px){
	#preview-shadow{
		max-width: 280px;
		height: 180px;
		padding-left: 10px;
		padding-top: 10px;
	}

	#preview{
		width: 280px;

	}

}

/* from here */
.lang {
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .button_lang {
    cursor: pointer;
    display: inline-block;
    padding: 0.25em 0em;
    border-radius: 10px;
    width: 5em;
    transition: 0.25s ease;
  }
  
  .button_lang:hover {
    background: var(--borderColor);
    transition: 0.25s ease;
  }
  
  .current_lang {
    background: var(--socialColor);
  }
  
  .translation {
    text-align: center;
    margin: 0.5em;
  }
  
  .english h1{
    color: var(--secondaryText);
    font-family: 'Roboto Mono', monospace;
  }
  
  .polish h1{
    color: var(--secondaryText);
    font-family: 'Roboto Mono', monospace;
}
/* to here   */

   