@RatifiedSubmitted over 1 year ago
All feedback is welcome.
All feedback is welcome.
Problems in Your Solution
Solution to your Problem
.container{
background-color: var(--white);
max-width: 20%;
margin: auto;
padding: 22px;
border-radius: 20px;
display: flex;
flex-direction: column;
gap: 20px;
}
.image > img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
.bold {
font-weight: 700;
font-size: 22px;
line-height: 1.4;
text-align: center;
color: var(--dark-blue);
}
.light {
font-weight: 400;
text-align: center;
color: var(--grayish-blue);
padding-bottom: 10px;
}
.attribution {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
font-size: 11px;
text-align: center;
margin-top: 20px;
}
@media (min-width: 1025px) {
.container {
max-width: 21%;
padding: 18px;
margin-top: 100px;
}
}