
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

:root {
--White: hsl(0, 0%, 100%);
--Light-gray: hsl(212, 45%, 89%);
--Grayish-blue: hsl(220, 15%, 55%);
--Dark-blue: hsl(218, 44%, 22%);
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    

}

body {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background-color: var(--Light-gray);
    font-family: 'outfit', sans-serif;
    font-size: 15px;
    
}

.card {
    
    width: 320px;
    height: 500px;
    border-radius: 10px;
    background-color: var(--White);
    
}

.top {
   display: flex;
   justify-content: center;
   
   
    
}

.img {
 max-width: 100%;
 max-height: 100%;  
 padding: 20px;
 border-radius: 10%;
 
}

.bottom {

   text-align: center;
   
}

.txt-head {
    margin-left: 15px;
    margin-right: 20px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.txt-para {
    
    margin: 0 auto;
    font-size: 15px;
    font-weight: 400;
    margin-left: 20px;
    margin-right: 20px;
}





/* attribution */

 .attribution {
    width: 100wv;
    height: -8px;
    position: absolute;
    bottom: 0;
     
    font-size: 11px; 
    text-align: center; 
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}
