*{
    background-color: var(--primary-color);
}

:root{
    --primary-color: hsl(47, 88%, 63%);
    --secondary-color: hsl(0, 0%, 42%);
    --third-color: hsl(0, 0%, 7%);
}

body{
    font-family: "Figtree", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container{
    background-color: white;
    max-width: 340px;
    border: 1px solid black;
    border-radius: 15px;
    box-shadow: 10px 10px 0px 0px rgba(0,0,0,1);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
}

.cardphoto{
    background-color: white;
    border-radius: 20px;
    width: 320px;
    padding: 10px;
}

.userphoto{
    background-color: white;
    width: 32px;
}

h4{
    font-size: 12px; 
    font-weight: 900;
    width: 52px; 
    margin: 10px 11px 10px 10px; 
    padding: 5px; 
    border-radius: 5px;
    
}

.profileinfo{
    display: flex; 
    align-items: center; 
    padding: 8px 0px 8px 0px;
    
}

p, h1, h2, h3, .profileinfo {
    background-color: white;
    margin-left: 10px;
    margin: 8px;
}


footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px;
    width: 220px;
    position: absolute;
    bottom: 10px;
}




.attribution { 
    font-size: 8px;
    text-align: center; 
    
}

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

