html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*{
	box-sizing: border-box;
}

body{
    padding: 30px;
	background: linear-gradient(140deg, #000000, #53056d);
	color: white;
	background-repeat: no-repeat;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 400;
}

body, html{
	max-height: 100%;
	height: 100%;
}

.header__title{
	font-weight: 900;
	margin-bottom: 20px;
	font-size: 40px;
}

.header__descr span{
	font-weight: 700;
}

.header{
	margin-bottom: 40px;
}

.main__title{
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 600;
}

.work-list{
	margin-left: 20px;
}

.work-list__item + .work-list__item{
	margin-top: 20px;
}

.work-list__item-link{
	color: rgb(144, 140, 245);
	text-decoration: none;
	position: relative;
	padding: 5px 0;
}

.work-list__item-link:before{
	content: "";
	width: 100%;
	height: 2px;
	background-color: rgb(144, 140, 245);
	display: block;
	position: absolute;
	bottom: 2px;
	left: 0px;
	transition: all 0.2s;
}

.work-list__item-link:hover{
	font-weight: 500;
}

.work-list__item-link:hover:before{
	width: 50%;
}

.main{
	margin-bottom: 40px;
}

.footer__title{
	font-weight: 700;
	margin-bottom: 20px;
}

.footer__technology-list{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.footer__technology-list-item{
	margin: 5px 0;
	font-size: 16px;
	border: 1px solid white;
	border-radius: 7px;
	padding: 7px 14px;
	margin-right: 12px;
}