html{
    background-color:#252c0a;
    background-image: URL(images/flower.jpg);
    background-size: cover;
}

body{
    background-color: rgba(251, 251, 234, 0.8);
    color:#0B1215;
    font: normal 300 1rem "Josefin Sans", Arial, sans-serif;
    margin:30px 200px;
    padding: 30px 30px;
    box-sizing: border-box;
    line-height: 1.25rem
}

h1{
    font: italic 500 4rem "Libre Bodoni", Georgia, serif;
    text-align: center;
    margin: 1.75rem auto 0;
}

h2{
    font: italic 300 1.75rem "Libre Bodoni", Georgia, serif;
    text-align: right;
    margin-top:0;
}

h1, h2{
    text-transform: lowercase;
}

p{
    margin:0 auto 1.25rem;
}

header p{
    text-align: center;
    font: normal 400 1.25rem "Josefin Sans", Arial, sans-serif;
    line-height: 1.25em;
    margin:0 auto 1.75rem;
}

dl{
    margin:0;
}

dt{
    font: normal 400 1.1rem "Josefin Sans", Arial, sans-serif;
}

dd{
    margin-left:0;
    margin-bottom:1.25rem;
}

ul{
    list-style-type: square;
    list-style-position: inside;
    padding-left: 0;
    margin:0 auto 0;
}

.topic p, li{
    max-width: 37em;
    margin-left: 0;
}

.location{
    font: italic 300 1rem "Josefin Sans", Arial, sans-serif;
}

.topic{
    display: grid;
    grid-template-areas: "heading content";
    grid-template-columns: 25% 1fr;
    align-items:baseline;
    gap: 60px;
    margin-bottom: .5rem;
}

#skills li, #interests li {
    list-style-type: none;
}

#skills ul{
    margin-bottom: 20px;
}

footer{
    font: normal 400 .9rem "Josefin Sans", Arial, sans-serif;
    text-align: center;
    margin: 4rem auto 1.75rem;
}

a{
    text-decoration: none;
    text-align: center;
}

a:link {
    color:rgb(144,85,0);
}

a:visited{
    color:#5a6017;
}

a:focus, a:hover{
    color:rgb(144,85,0);
    background-color:rgb(195,141,24);
}

a:active{
    color:rgb(144,85,0);
    background-color:#e0bc0e
}


