@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");


p {
    margin-bottom: 1.25rem;
    color: hsl(210, 50%, 4%);
}

h6 {
    margin-bottom: 1.25rem;
    color: hsl(210, 22%, 49%);
}

a {
    text-decoration: none;
}

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

main{
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.containter{
    max-width: 620px;
}

.underline{
    height: 0.25rem;
    width: 5rem;
    background: hsl(25, 78%, 60%);
    margin-left: auto;
    margin-right: auto;
}

.profile{
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 0.25rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s linear;
}

.img-container{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 1.5rem; 
    overflow: hidden;
}

.projects{
    margin-top: 0.5rem;
    background: hsl(205, 100%, 96%);
    color:hsl(20, 70%, 60%);
    padding: 0.5rem 0.6rem;
    border-radius: 10%;
    transition: all 0.3s linear;
}

.projects:hover {
background:hsl(20, 57%, 80%);
color: hsl(205, 86%, 17%);
}

.social-links a{
font-size: 2rem;
}