body {
	width: 100%;
	background-color: #515f67;
	margin: 0;
	padding: 0;
}

.wrapper {
	background-color: #ffffff;
	margin-top: 40px;
	margin-bottom: 40px;
	width: 100%;
}

.wrapper__title {
	text-indent: 0;
	padding-top: 60px;
	width: 1170px;
	margin: 0 auto; 
	font-family: 'Segoe UI', arial;
	font-weight: 600;
	text-transform: uppercase;
	color: #515f67;
	font-size: 30px;
	padding-bottom: 80px;

}

.wrapper__works {
	width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 80px;
    padding-top: 60px;
}

.work__item,
.work__item:hover,
.work__item:visited {
	position: relative;
	//height: 270px;
    //width: 270px;
    height: 360px;
    width: 360px;
    margin-bottom: 30px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
}

.work__item:last-child {
	margin-right: 0;
}

.work__item:after {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	content: '';
	background-color: rgba(81, 95, 103, 0.26);
	border-radius: 5px;
}

.work__item:hover::after {
	background-color: rgba(81, 95, 103, 0);
	border-radius: 5px;
}

.converter {
    background-image: url("../img/covers/converter-cover.png");
}

.weather {
	background-image: url("../img/covers/weather-cover.png");
}

.abby {
    background-image: url("../img/covers/abby-cover.png");
}

.cookbook {
    background-image: url("../img/covers/cookbook-cover.png");
}

.tbd:after {
    background-image: url("../img/icons/icon-plus-white.png");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 22%;
}

.links-wrapper {
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 18%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 5px 5px;
    z-index: 100;
}

.work__item:hover > .links-wrapper {
	background-color: rgba(81, 95, 103, 0.7);
}

.link {
	display: block;
	height: 30px;
	width: 30px;
	background-size: contain;
	margin: auto 5px;
	cursor: pointer;
}

.chrome {
	background-image: url("../img/icons/chrome-icon.png");
}

.github {
	background-image: url("../img/icons/github-icon.png");
}

.slides {
	background-image: url("../img/icons/slides-icon.png");
}

.work__item:hover >.links-wrapper > .chrome {
	background-image: url("../img/icons/chrome-icon-white.png");
	cursor: pointer;
}

.work__item:hover >.links-wrapper > .github {
	background-image: url("../img/icons/github-icon-white.png");
}

.work__item:hover >.links-wrapper > .slides {
	background-image: url("../img/icons/slides-icon-white.png");
}


