body {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    font: 14px system,-apple-system,BlinkMacSystemFont,'Segoe UI','Segoe WP',Roboto,Ubuntu,Oxygen,Cantarell,'Fira Sans','Helvetica Neue',Helvetica,'Lucida Grande','Droid Sans',Tahoma,'Microsoft Sans Serif',sans-serif;
    background: linear-gradient(-45deg, #1e4b8a, #356ebd);
}
.wrapper {
	display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-content: center;
    width: 100%;
    height: 100vh;
    padding: 35px 35px 100px;
    background-color: #295faa;
}
.title {
    text-align: center;	
	width: 100%;
    margin: 0 0 60px;
    font-size: 42px;
    color: #ffefb3;
}
.white {
	color: #fff;
}
.description {
    text-align: center;
	width: 100%;
    margin-bottom: 2px;
    font-size: 32px;
    font-weight: 600;
    color: hsla(0, 0%, 100%, 0.54);
}
.item {
    text-align: center;
    width: 100%;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}
.item:hover {
	text-decoration: none;
	color: #ffefb3;
}
@media (max-width:1200px) {
.title {
	font-size: 32px;
    line-height: 32px;
}
.description {
	font-size: 24px;
}
.item {
	font-size: 24px;
}
}