
body {
	width: 100%;
	padding: 0;
    margin: 0;
}

.container {
	padding: 0;
	margin: 0;
}

section {
	width: 100%;
	padding: 80px 40px;
}

h1 {
	font-weight: 300;
	margin: 0;
    letter-spacing: 40px;
	font-size: clamp(.25rem, 4vw + .5rem, 5rem);
	background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    text-align: right;
	color: transparent;
	-webkit-background-clip: text;
}

h2 {
	margin: 0;
    letter-spacing: 30px;
	font-size: clamp(.25rem, 4vw + .5rem, 5rem);
	background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
	color: transparent;
	-webkit-background-clip: text;
	padding-left: 30px;

	border-width: 10px;
	border-style: solid;
	border-image: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%) 1 1;
}

#intro {
	height: 100vh;
	background-color: #e7eaf6;
	align-content: center;
	overflow: hidden;
}

.linkedin {
	position: absolute;
	left: 40px;
	bottom: 40px;
	width: 100px;
}

.linkedin img {
	height: 4vh;
}

#about {
	color: #38598b;
	text-align: justify;
	line-height: 32px;
}

#documents {
	background-color: #56729c;
}

#documents a {
	color: #ccc;
	text-decoration: none;
}

#documents > div {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

#documents > div > div {
	width: 260px;
	height: 40vh;
	overflow: hidden;
	margin: 0;
	padding: 0;

	background-color: #f5f5f5;
	color: rgba(66, 68, 90, 0.3);
}

#cv,
#referencje {
	border-radius: 12px;
	position: relative;
	-webkit-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
	-moz-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
	box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
}

#cv:hover,
#referencje:hover {
	cursor: pointer;
	background-color: white;
}

#cv div {
	line-height: 40vh;
	font-size: 25vh;
}

#cv img,
#referencje img {
	position: absolute;
	width: 260px;
	padding-top: 50px;
	top: 0;
	opacity: .5;
}

#referencje div {
	line-height: 10vh;
	font-size: 16.5vh;
	overflow-wrap: anywhere;
	text-align: right;
}

#work {
	background-color: #ffffff;
	color: #38598b;
	text-align: justify;
	line-height: 32px;
}

#projects {
	background-color: #bbcadf;
	display: flex;
	justify-content: center;
}

#projects div > img {
	width: 140px;
	margin-right: 20px;
}

#projects button {
	width: 210px;
	height: 42px;
	margin-right: 4px;
	margin-bottom: 4px;
	
	border: 2px solid #56729c;
	border-radius: 12px;
}

#projects button span {
	line-height: 34px;
}

#projects .gamelink img,
#projects .githublink img {
	width: 32px;
	height: 32px;
}

#projects button:hover {
	background-color: #56729c;
}

#contact {
	background-color: #e7eaf6;
}

#contact form > div {
	width: 100%;
}

.contact_text {
	text-align: center;
}

.my_email {
	width: 100%;
	font-size: 1.25rem;
	letter-spacing: 5px;
	text-align: center;
	cursor: pointer;
	overflow-x: hidden;
}

.input-title {
	margin-left: 8px;
	margin-bottom: 8px;
}

.input,
.textinput,
.submit-btn {
	width: 100%;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 14px;
	border: 1px solid #56729c;
	margin-bottom: 10px;
}

.input,
.textinput:focus {
	outline-color: #56729c;
}

.empty {
	text-align: center;
	font-size: 16px;
	color: red;
	margin: 10px;
}

.response {
	text-align: center;
	font-size: 22px;
	color: green;
	margin: 10px;
}

.submit-btn {
	font-size: 16px;
	color: white;
	background-color: #56729c;
}

.submit-btn:hover {
	cursor: pointer;
	color: black;
	background-color: white;
	outline: 1px solid #56729c;
}