/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Typography */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #808080;
    color: #333;
    padding: 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Container */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Cards */
.card {
    background-color: #222428;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
	color: white;
}

.card-content {
    font-size: 1.2rem;
}

/* post it notes */
.note {
	position: absolute;
	background-color: yellow;
	border: 1px solid black;
	padding: 10px;
}