* {
    box-sizing: border-box;
}

body {
    margin: 2em;
    font-family: "Courier New", serif;
}

/*Index sidan*/
.index-image {
    background-image: url("../IMG/skog.JPG");
    background-color: white;
    height: 35em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.index-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

button:link, button:visited {
    background-color: white;
    color: darkgoldenrod;
    padding: 1em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

button:hover, button:active {
    background-color: goldenrod;
}
/*---------------*/

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: white;
    color: darkgoldenrod;
    font-family: "Courier New", serif;
    font-size: .7em;
    text-align: center;
    padding-top: 5em;
}