@import url('https://fonts.googleapis.com/css?family=Copse&display=swap');

html, body, h1 {
    border: 0;
    margin: 0;
    padding: 0;
}


/*

Background image's photo by Maysam Yabandeh on Pixnio
    Photo:  https://pixnio.com/media/hiking-hiker-man-sunny-forest
    Author: https://pixnio.com/author/m_yabandeh
    Pixnio: https://pixnio.com/

*/

html { 
    background: url("images/PIXNIO-2825820-4032x3024.jpeg") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    font-family: 'Copse', serif;
}

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    width: 100vw;

    
    font-size: 8em;
    color: white;
    text-shadow: 2px 2px black;
    text-align: center;
}

h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    width: 100vw;

    
    font-size: 4em;
    color: white;
    text-shadow: 2px 2px black;
    text-align: center;
}

a {
    color: lightskyblue;
}

a:visited {
    color: plum;
}

a:hover {
    color: lightblue;
}