*{
    padding: 0px;
    margin: 0px;
    border: none;
    text-decoration: none;
    outline:none;
    box-sizing: border-box;
    position: relative;
    list-style-type: none;
    
    
}

body{
    height: 100svh;
    max-height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", serif;
    background-color: hsl(0, 0%, 8%);
    color: white;
}
main{
    display: flex;
    flex-direction: column;
    background-color:  hsl(0, 0%, 12%);
    width: 400px;
    height: auto;
    border-radius: 8px;
   
}
.photo-name{
    display: flex;
    flex-direction: column;
}
.photo-name img{
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: auto;
    margin-bottom: 18px;
    margin-top: 30px;
    

}
.photo-name h4{
    display: flex;
    justify-content: center;
    word-spacing: 2px;
    font-size: 28px;
    padding: 4px;
}
.photo-name .address{
    text-align: center;
    color: hsl(75, 94%, 57%);
    word-spacing: 2px;
    font-size: 18px;

}
.photo-name .job{
    display: flex;
    justify-content: center;
    margin-top: 24px;
    font-weight: 300;
    color:  hsl(0, 0%, 82%);
    font-size: 18px;
}
.linkes{
    display: flex;
    flex-direction: column;
    gap:18px;
    margin-top: 16px;
  
}
.linkes .general{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color:  hsl(0, 0%, 20%);
    width: 85%;
    height: 55px;
    margin: auto;
    border-radius: 8px;
    font-weight: 700;

}
.linkes .Instagram{
    margin-bottom: 30px;
}
.linkes .general:hover{
    background-color: hsl(75, 94%, 57%);
    color: black;
}
@media (max-width:375px) {
    main{
        width: 290px;
    }
    .photo-name .job{
        padding: 5px;
        text-align: center;
    }
}