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

body {
    padding: 0;
    margin: 0
}

h2 {
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1F314F;
}

p {
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
    font-weight: 400;
    color: #68778D;
}

#container {
    width: 375px;
    height: 100vh;
    background-color: #D5E1EF;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#card {
    width: 320px;
    height: 500px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 16px;
    text-align: center;
    gap: 24px;
    box-shadow: 10px 11px 24px -16px rgba(0,0,0,0.2);
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (min-width: 375px) {
    #container {
        width: 100%;
        height: 100vh;
    }
    
}