html{
    background-color: rgb(255, 249, 245);
}

body{
    position: relative;
    width: 80%;
    margin: 40px auto;
    padding: 10px 30px;
    box-sizing: border-box;
    border: 10px solid orange;
    font-family: 'Geologica', sans-serif;
    z-index: 1;
}

body::before, body::after{
    content: " ";
    display: block;
    position: absolute;
    background-color: rgb(255, 249, 245);
    width: 100px;
    height: 100px;
    z-index: 3;
}

body::before {
    top: -10px;
    left: -10px;
}

body::after {
    bottom: -10px;
    right: -10px;
}

h2 + ul, .interest {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;   
}

h1, h2{
    font-family: 'Geologica', sans-serif;
}

h1{
    position: relative;
    font-size: 4em;
    z-index: 3;
    margin-bottom: 0.4em;
}

h2{
    font-size: 2em;
    text-transform: capitalize;
}

address div {
    display: inline;
}

.location::after, .postcode::after, .phone::after {
    content: "|";
    color: #777;
    margin: 0 1em;
}

.location, .postcode, .phone, .email {
    font-style: normal;
    font-size: 1.15em;
}

#summary {
    font-style: italic;
}

.PersonalInterests {
    content: "";
    display: block;
    position: relative;
}

p {
    padding-left: 1em;
}

a:link {
    color: rgb(13, 156, 156);
}

a:visited {
    color:rgb(209, 82, 36)
}

a:hover {
    color: rgb(132, 235, 212);
}

a:active {
    color: rgb(255, 181, 43);
}


img#logo {
    content: " ";
    display: block;
    position: fixed;
    top: 5%;
    right: 6%;
    width: 30vw;
    z-index: 2;
}