* {
    margin: 0;
}
body {
    margin: 15px;
    color: white;
    background: linear-gradient(rgb(56, 56, 56), rgb(24, 24, 24) 30%);
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}
.container {
max-width: 1000px;
margin: 0 auto;
}
    .icon-button {
        border: 1px solid white;
        border-radius: 100%;
        padding: 3px;
        width: 24px;
        height: 24px;
        position: relative;
        cursor: pointer;
        i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .bi-heart {
            transform: translate(-50%, -50%);
        }
        .bi-three-dots {
            transform: translate(-50%, -50%);
        }
    .icon-button:hover {
        background-color: rgb(172, 172, 172);
    }
}
.imageContainer {
	position: relative;
	.image-icon {
		color: rgba(255, 255, 255, 0.6);
		position: absolute;
		top: 10px;
		left: 10px;
	}
}