@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro:200,300,400,500,600,700,900");

h1{
    /* color: purple; */
    font-weight: 200;
    font-size: 50px;
    text-transform: uppercase;
    border-top: 4px solid;

}

body{
    background-color: #ACAEC5; /* salmon color */
    color: #44364B;
    font-family: "Source Code Pro";
    font-weight: 200;
}

img{
    height: 300px;
    border-radius: 500%;
}

#container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 95vh;
}

button{
    margin : 30px auto 0 ;
    padding : 20px 25px;
    background-color:  #ACAEC5;
    font-size: 14px;
    text-align: center;
    color: #44364B;
    border: 1px solid #44364B;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 4px;
    outline: none;
}

button:hover{
    transition: 0.4s;
    background-color: #44364B;
    color: #ACAEC5;
    text-decoration: underline;
}

p{
    font-size: 20px;
    font-weight: 400;
}