
body {
    padding-top: 70px;
    font-size: 16px;
    color: #081617;
    background-color: #FEFDFB;
}

.profile-image {
    clip-path: polygon(5% 5%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);  
    position: relative;
    top: 3rem;
}

h1{
	color:#EC7751;
}

h3{
    line-height: 1.3em;
}

p{
    line-height: 1.5em;
}

footer {
    margin: 50px 0;
}

:root {
    --mainColor: #90DAC6;
}

a {
    background:
       linear-gradient(
         to bottom, var(--mainColor) 0%,
         var(--mainColor) 100%
       );
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 4px 4px;
    color: #000;
    text-decoration: none;
    transition: background-size .5s;
  }
  
  a:hover {
    background-size: 4px 50px;
    text-decoration: none;
    color: #000;
  }

.copyright{
    color: lightgray;
}