/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
--White: hsl(0, 0%, 100%);
--Ligh-gray: hsl(212, 45%, 89%);
--Grayish-blue: hsl(220, 15%, 55%);
--Dark-blue: hsl(218, 44%, 22%);
--font: 'Montserrat', sans-serif;
}

body{
    background-color: var(--Ligh-gray);
    font-family: var(--font);
}

.card{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto ;
    display: flex;
    flex-direction: column;
    background-color: var(--White);
    border-radius: 3%;
    height: 420px;
    width: 270px;
    padding: 0.9%;
    gap: 20px;  
}

.top{
    height: 70%;
}

.bottom{
    height: 30%;
    text-align: center;
}

.texts{
    font-size: 15px;
    padding: 0 5%;

}

p:first-of-type{
    font-weight: 700;
    margin-bottom: 15px ;
    text-justify: justify;
}
p:last-of-type{
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--Grayish-blue);
}

img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 3% ;
}

.attribution{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}