body {
	font-family: 'Source Code Pro';
    background-color: rgb(12, 15, 18);
    display: flex;
	flex-direction: column;
	justify-content: center;
    align-items: center;
}

.image-container {
  text-align: center;
  padding-top: 50px;
  width: 100%;
}

.title-header {
    font-size: 2em;
    color: hsl(0, 0%, 97%);
}

.card-container {
    display: flex;
	justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
	width: 100%;
	max-width: 400px;
}

.card {
    display: flex;
	flex-direction: row;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	width: 100%;
}

.card i {
    font-size: 32px;
	margin-left: 10px;
	width: 10px;
}

.card span {
    font-size: 24px;
	margin-left: 15%;
}

.card:hover {
    background-color: #e9e9e9;
}
