@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400&display=swap');

* {
	font-family: 'Cairo', sans-serif;
	box-sizing: border-box;
	text-decoration: none
}

p {
	margin: 0
}

a {
	color: #fff;
	transition: all .2s ease-in-out
}

html {
	scroll-behavior: smooth
}

body {
	background: #111;
	color: #f9f9f9;
	margin: 0
}

header {
	padding: 25px 0
}

.logo {
	display: block;
	height: 48px;
	width: 150px;
	margin: auto
}

main {
	background: #222;
	padding: 50px 25px;
	border-radius: 25px 25px 0 0;
	position: relative
}

.item {
	background: #333;
	display: grid;
	grid-template-columns: 25px 1fr;
	grid-gap: 15px;
	border-radius: 25px;
	padding: 15px 25px;
	margin-bottom: 15px;
	transition: all .2s ease-in-out
}

.item:hover {
	background: linear-gradient(to right, #46c8f5 , #0099cd);
}

.item img {
	height: 25px;
	width: 25px
}

.item span {
	line-height: 1.7
}

footer {
	background: #111;
	padding: 25px;
	text-align: center
}

footer a {
	color: #4a58d8
}
