@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700&display=swap');


body {
    font-family: 'Outfit', sans-serif;
    background-color: hsl(212, 45%, 89%);
}
#wrapper {
    width: 1440px;
}

.container {
    background-color: white;
    max-width: 310px;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 0;


}
img {
    width: 100%;
    border-radius: 16px;
}
h2{
    color: hsl(218, 44%, 22%);
    font-weight: 700;
}
p {
    font-size: 15px;
    color: hsl(220, 15%, 55%);
    font-weight: 400;
}
footer {
    position: absolute;
    left: 38%;
    bottom: 0;
    font-size: 13px;
    color: hsl(220, 15%, 55%);
}

footer a {
    color:hsl(218, 44%, 22%);
}
@media only screen and (max-width: 375px) {
  
    #wrapper {
        width: 100%;
    }
    .container {
        width: 100%;
        margin: 0;
    }
}

