body{
    display: flex;
    background-color: black;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
main {
    height: 500px;
    width: 350px;

    background-color: rgb(31, 31, 31);
    display: block;
    text-align: center;
    color: white;
    border-radius: 15px;

}
.circle{
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100px;
    border: 1px solid white;
    border-radius: 100%;
    background-image: url(img/joshi.jpeg);
    background-size: cover;
}
h1{
    font-size: 25px;
}
h2{
    font-size: 18px;
    color: rgb(200, 142, 35);
}
h3{
    font-size: 18px;
    margin-bottom: 30px;
}
.person{
    margin-top: 20px;
    display: block;
    justify-items: center;

}
.links{
    justify-items: center;
    justify-content: center;
    margin-bottom: 30px;


}
.links a {
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: rgb(51, 51, 51);
    height: 50px;
    width: 300px;
    border-radius: 10px;
}
.links a:hover {
    color: rgb(0, 0, 0);
    background-color: rgb(200, 142, 35);
}
footer {
    font-size: 11px; 
    text-align: center; 
}
.attribution a { color: hsl(228, 45%, 44%); }