@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: hsl(0, 0%, 8%);
}

main{
    padding: 20px;
    background-color: hsl(0, 0%, 12%);
    border-radius: 10px;
}

.information{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

img{
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.full-name{
    color: hsl(0, 0%, 100%);
    font-weight: 700;
    font-size: 20px;
    padding-top: 15px;
    
}

.addres{
    color: hsl(75, 94%, 57%);
    font-size: 14px;
    padding: 0 50px;
    font-weight: 400;
    
}

.work{
    color:  hsl(0, 0%, 100%);
    padding: 25px 0 20px;
    opacity: 0.8;
    font-size: 12px;
    text-align: center;
}

.div-button{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.button{
    border: none;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    font-size: 15px;
}

.button:hover{
    background-color: hsl(75, 94%, 57%);
    transition: 0.5s;
    
    

}

