:root{
  --bg: hsl(212,45%,89%);
  --white: hsl(0,0%,100%);
  --text: hsl(218,44%,22%);
  --muted: hsl(216,15%,48%);
  --link: hsl(228,45%,44%);
}
*,*::before,*::after { 
    box-sizing: border-box;
 }

html, body {
    margin: 0;
    padding: 0;
    }
body {
    display: grid;
    grid-template-rows: 1fr auto; 
    min-height: 100vh;
    background-color: var(--bg);
    font-family: 'Outfit', sans-serif;
}

.card { 
    background: var(--white);
    border-radius: clamp(0.625rem, 2vw, 1.25rem);
    width: min(92vw, 20rem);
    text-align: center;
    padding: clamp(0.875rem, 3vw, 1.25rem); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
}
main {
    display: grid;
    place-items: center;
    padding: 1.5rem;
    
}

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


/* Typo */
.card p {
    text-align: center;
    color: var(--muted);
    font-weight: 400;
    font-size: 1rem;
    margin: clamp(1rem, 3vw, 1.1rem);
}

.card h1{
    
    font-weight: 700;
    font-size: 1.25rem;
    margin: clamp(0.8rem, 3vw, 1.1rem);
}
/* footer */
footer {
    text-align: center;
    font-size: 11px;
    margin-top: 1.25rem;
    
}

a {
    text-decoration: none;
    color: var(--link)
}

