*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-color: #44141444;
    font-family: georgia;
}

main{
    background-color: gray;
    width: 300px;
    height: 550px;
    border-radius: 10px;
    position: absolute;
    top: 100px;
    left: calc(50% - 150px);
}

.circle{
    background-color: antiquewhite;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: 50px;
    margin-left: calc(50% - 50px);

}

h2{
    text-align: center;
    margin-top: 10px;
    color: antiquewhite;
}

.intro{
    text-align: center;
}

.intro p{
    color: yellow;
    font-size: small;
}

.intro q{
    font-size: small;
    color: antiquewhite;
}

.name{
    /* border: 1px solid black; */
    border-radius: 5px;
    background-color: antiquewhite;
    margin: 20px;
    text-align: center;
    padding: 3px;
    font-size: small;
   
}

a{
    text-decoration: none;
    color: inherit;
}

.name:hover {
  background-color: wheat;
  cursor: pointer;
}
