*{
    margin: 0;
    padding: 0;
}
body{
   background-color: black; 
   color: white;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   height: 100vh;
}
.container{
    width:100%;
    max-width: 400px;
    background-color:hsl(0, 0%, 8%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
}

#pic{
    width: 80px;
    border-radius: 50%;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
h1{
    margin-bottom: 0.6rem;
}
#loc{
    color:hsl(75, 94%, 57%);
    margin-bottom: 2rem;
}
#info{
    color: hsl(0, 0%, 70%);
    margin-bottom: 0.7rem;
}
button{
    font-size: 1.2rem;
    display: block;
    background-color:hsl(0,0%,12%);
    color:white;
    width:300px;
    border: none;
    margin-top:1rem;
    height: 3rem;
    border-radius: 0.3rem;
}

button:hover{
    background-color:hsl(75, 94%, 57%);
    color:black;
    cursor:pointer;
}

button:last-of-type{
    margin-bottom: 1rem;
}

.attribution {
     font-size: 11px; text-align: center; 
     font-size: 1rem;
    }
.attribution a { 
    font-size: 1rem;
    color: hsl(228, 45%, 44%); 
    text-decoration: none;
}