* {
        box-sizing: border-box;
}

body {
        font-family: sans-serif;
	margin: 0;
}

.center { 
	text-align: center;
}

.container {
	display: flex;
	min-height: 100vh;
}
.sidebar {
    width: 220px;
    height: 544px;
    background-color: #e4e4e4;
    background-image: url("../images/sidebar2.png");
    background-repeat: no-repeat;
    color: #000000;
    padding: 20px;
}
.sidebar a {
	color: #000000;
	display: block;
	padding: 10px 0;
}

.content {
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.bottom-spacer {
    margin-top: auto;
    display: flex;
    gap: 20px;
    padding-top: 20px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.footer img {
    width: 345px;
    max-width: 30%;
    height: auto;
}

img.small {
  height: 150px;
}
TEST123
