@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --White: hsl(0, 0%, 100%);
    --Light-gray: hsl(212, 45%, 89%);
    --Grayish-blue: hsl(220, 15%, 55%);
    --Dark-blue: hsl(218, 44%, 22%);
}

body{
    font-family: 'Outfit', sans-serif;
    background-color: var(--Light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.container{
    width: 260px;
    background-color: var(--White);
    padding: 13px;
    border-radius: 16px;
    box-shadow: 0px 10px 32px var(--Light-gray);
}
.image-container{
    border-radius: 10px;
    overflow: hidden;
    background-color: red;
    height: 100%;
    width: 100%;
}
img{
    width: 100%; 
    height: auto; 
    display: block;
}
.bottom-container{
    padding:20px 12px;
    text-align: center;
}
.bottom-container h1{
    font-size: 18px;
    font-weight: 700;
    color: var(--Dark-blue);
    margin-bottom: 15px;
}
.bottom-container p{
    font-size: 13px;
    font-weight: 400;
    color: var(--Grayish-blue);
}

.attribution {
    font-size: 11px;
    text-align: center;
    position: absolute;
    bottom: 0;
  }

  .attribution a {
    color: hsl(228, 45%, 44%);
  }