@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: hsl(0, 0%, 100%);
    --slate-300: hsl(212, 45%, 89%);
    --slate-500: hsl(216, 15%, 48%);
    --slate-900: hsl(218, 44%, 22%);
}

body {
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    background-color: var(--slate-300);

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    flex-direction: column;
}

article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    background-color: var(--white);
    width: 320px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

h1 {
    font-size: 1.5rem;
    color: var(--slate-900);
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

p {
    font-size: 1rem;
    color: var(--slate-500);
    text-align: center;
    line-height: 1.4;
}

.img-container {
    margin-bottom: 25px;
}

img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--slate-500);
    color: var(--white);
    text-align: center;
    padding: 1rem;
}

footer a {
    color: var(--slate-300);
    text-decoration: none;
    font-weight: 700;
}
footer a:hover {
    text-decoration: underline;
    color: var(--slate-900);
}