2025-01-30 02:29:36 +00:00
|
|
|
*, *::before, *::after {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
height: 100vh;
|
|
|
|
width: auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
height: 75vh;
|
|
|
|
width: auto;
|
2025-01-30 03:07:31 +00:00
|
|
|
position: relative;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chocolates {
|
|
|
|
height: 44vh;
|
|
|
|
width: 18vw;
|
|
|
|
top: 15vh;
|
|
|
|
left: 6vw;
|
|
|
|
padding-left: 1.25rem;
|
|
|
|
padding-top: 1.25rem;
|
|
|
|
padding-right: .5rem;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
2025-01-30 02:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-height: 100%;
|
|
|
|
width: auto;
|
|
|
|
object-fit: contain;
|
2025-01-30 03:07:31 +00:00
|
|
|
}
|
|
|
|
|