@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%);
}

html{
    font-size: 62.5%;
}

body{
    height: 100dvh;
    font-size: 1rem;
    background-color: var(--Slate-300);
}

h1, p{
   font-family: "Outfit", sans-serif;
   text-align: center;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--Slate-900);
}

p{
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--Slate-500);
}

main{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

article{
    width: 90%;
    max-width: 350px;
    height: 85%;
    max-height: 600px;
    background-color: var(--White);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 1px 1px 20px var(--Slate-300);
}

img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    border-radius: 14px;
}

.area-text {
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 12px 0 12px;
}


