* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Outfit, sans-serif;
}

body {
    background-color: #D5E1EF;
}

.container {
    width: 320px;
    height: 500px;
    left: 40vw;
    top: 15vh;
    position: absolute;
    background: hsl(0, 0%, 100%);
    border-radius: 5%;
}

h1 {
    width: 250px;
    font-size: 22px;
    font-weight: 700;
    line-height: 26.40px;
    word-wrap: break-word;
    color: #1F314F;
    text-align: center;
    left: 30px;
    display: flex;
    justify-content: center;
    position: relative;
    display: block;
}

p {
    color: #68778D;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.20px;
    word-wrap: break-word;
    margin: 16px 32px 5px;
    text-align: center;
}

img {
    width: 288px;
    height: 288px;
    border-radius: 5%;
    margin: 16px 16px 24px 16px;
}

footer {
    font-size: 11px;
    text-align: center;
    color: hsl(228, 45%, 44%);
}

a {
    text-decoration: none;
    color: hsl(228, 45%, 44%);
}
@media (max-width: 430px) {
    .container {
        width: 90vw;
        height: auto;
        top: 15vh;
        position: absolute;
        left: 5vw;
    }
    img{
        width: 90%;
        height: auto;
    }
}