
/* Remove any margin or padding for the document */
html{
    margin:0;
    padding:0;
}
/* Set fonts initially */
h1,h2,h3,h4,h5,h6{
    font-family: 'Karma', serif;
}
p,div{
    font-family: 'Lato', sans-serif;
}
/* Set link styles */
a{
    text-decoration: none;
    color: #5f5f5f;
}
a:hover{
    color: #7f7f7f;
}
/* Header styles */
header{
    width:100%;
    margin:auto;
    display:flex;
    justify-content: space-around;

}
/* Main styles */
main{
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}
main p{
    width:60%;
    text-align: center;
}
/* Footer styles */
footer{
    display:flex;
    justify-content: space-around;
}
