/* outfit-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/outfit-v11-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/outfit-v11-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


*,
*::after,
*::before {
    box-sizing: border-box;
}

:root{
    --White: hsl(0, 0%, 100%);
    --Slate300: hsl(212, 45%, 89%);
    --Slate500: hsl(216, 15%, 48%);
    --Slate900: hsl(218, 44%, 22%);
}

body{
    margin: 0;
    font-family: Outfit, Verdana, Geneva, Tahoma, sans-serif;
    background-color: var(--Slate300);
    width: 100vw;
    height: 100vh;
     display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    width: 320px;
    max-width: 320px;
    background-color: var(--White);
    padding: 16px 16px 40px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 25px 25px rgba(0,0,0,0.0477);
}

.img{
    max-width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.content{
    text-align: center;
    margin: 0 16px;
    margin-top: 24px;
}

.card-title {
    font-size: 22px;
    color: var(--Slate900);
    line-height: 120%;
    font-weight: 700;
}

.card-paragraph{
    font-size: 15px;
    margin-top: 16px;
    color: var(--Slate500);
    line-height: 140%;
    letter-spacing: 0.2px;
    font-weight: 400;
}

.attribution { 
    font-size: 11px; 
    text-align: center; 
    color:var(--Slate500); 
    font-weight: 400;
    display: none;
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}