body {
height: 100vh;
  display: flex;
  justify-content: center;  
  align-items: center;      
  background-color: hsl(0, 0%, 8%);
}

.box {
    background-color: hsl(0, 0%, 12%);
    display: flex;
    flex-direction: column;           
    align-items: center;
    padding-top: 1.5em;
    border-radius: 0.5rem;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 1.5em;
    margin: 1em;

}

img {
    width: clamp(50px, 20vw, 75px);
    height: clamp(50px, 20vw, 75px);
    border-radius: 50%;
    
}

p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin: 0;
}

p.bold-text{
    font-weight: 500;
}

.name {
  font-size: 1.1rem;
  color: hsl(0, 0%, 100%);
  padding-bottom: 0;
  padding-top: 1em;
  text-align: center;
}

.adress{
    font-size: 0.6rem;
    color: hsl(75, 94%, 57%);
    padding-top: 0.2em;
    padding-bottom: 1.5em;
    text-align: center;
}

.description{
    font-size: 0.5rem;
    color: hsl(0, 0%, 82%);
    padding-bottom: 1em;
    text-align: center;
}

.buttons{
    display: flex;
    flex-direction: column; 
    margin: 0;
    
}

button{
    background-color: hsl(0, 0%, 20%);
    color: white;               
    width: 12rem;
    text-align: center;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 0.6rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    margin: 0.4em;
}

button:hover{
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 12%);
}

