﻿:root {
    --links-color: rgb(255, 212, 170);
    --header-color: rgb(255, 127, 0);
}

header {
    background-color: var(--header-color);
    position: absolute;
    top: 5px;
    right: 0;
    left: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.header-content {
    width: 980px;
    margin-left: calc((100% - 980px) / 2);
    text-align: right;
    font-size: 18px;
    line-height: 1.4em;
}

    .header-content p {
        margin: 0;
    }

header h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 48px;
    margin: 35px 0 0 0;
}

header h2 {
    font-size: 20px;
    margin: 20px 0 0 0;
}

.header-image {
    width: 195px;
    height: 195px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 212, 170, 1);
    border: solid 3px black;
    text-align: center;
    position: absolute;
    top: 5px;
}

.header-image img {
    width: 171px;
    height: 171px;
    margin-top: 7px;
    background-color: var(--header-color);
    border: solid 2px white;
    padding: 3px;
}

.header-links {
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 7px 0 1px 0;
    width: 100%;
    height: 37px;
    overflow: hidden;
    background-color: var(--links-color);
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.6);
}

    .header-links ul {
        list-style-type: none;
        padding: 0;
        margin-top: 7px;
    }

    .header-links li {
        display: inline;
        border-left: 1px solid rgba(84, 42, 0, 1);
        padding: 10px 0;

    }

    .header-links li:first-child{
        border-left: 0;
    }

    .header-links a {
        background-color: var(--links-color);
        padding: 10px 60px;
        transition-duration: 1s;
        text-decoration: none;
        color: black;
    }

        .header-links a:hover {
            color: var(--header-color);
        }

footer {
    background-color: var(--header-color);
    bottom: auto;
    left: 0;
    margin-left: 0;
    width: 100%;
    min-width: 980px;
    position: absolute;
    height: 84px;
    top: 950px;
}