/*
 * Variables
 */
:root {
    --primary-color:#618d4e; 
    --secondary-color: #3b4b35;

    --header-primary-color: var(--primary-color);
    --header-secondary-color: var(--secondary-color);
}

/*
 * General
*/
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, serif;
    background: #f1f1f1;
    margin: 0;
}

/*
 * Header
 */
header{
    background: var(--header-primary-color);
    color: white;
    box-sizing: unset;
    width: 100%;
    position: fixed;
}

header div {
    padding: 30px;
    text-align: center;
}

header div h1 {
    font-size: 50px;
}

header nav {
    overflow: hidden;
    background-color: var(--header-secondary-color);
}

header nav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

header nav a:last-child {
    float:right
}

header nav a:hover {
    background-color: #ddd;
    color: black;
}

/*
 * Main
 */
.main {
    width: 60%;
    padding-top: 353px;
    padding-bottom: 31px;
    margin-left: auto;
    margin-right: auto;
}

#phone {
    background-color: white;
    border-radius: 61%;

    text-align: center;
    line-height: 60px;
    font-size: xx-large;
    position: fixed;
    bottom: 400px;
    right: 7%;
    width: 60px;
    height: 60px;
    z-index: 11;
}


#phone:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#phone a i {
    color: #d4af37 !important;
}

.leftcolumn {
    float: left;
    width: 70%;
}

.rightcolumn {
    float: left;
    width: 30%;
    background-color: #f1f1f1;
    padding-left: 20px;
}

/*
 * Article
 */
article {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
}

article img {
    width: 100%;
}

article:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

aside {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
}

aside#news ul {
    list-style: none;
}

aside#links {
    text-align: center;
}

aside#links a {
    text-decoration: none;
}

aside#links i {
    font-size: x-large;
    margin-right: 13px;
    color: black;
}

.main::after {
    content: "";
    display: table;
    clear: both;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
    margin-top: 20px;
}

/*
 * Responsive
 */

@media screen and (max-width: 800px) {
    .main {
        width: 100%;
    }

    .leftcolumn, .rightcolumn {
        width: 100%;
        padding: 0;
    }
}

@media screen and (max-width: 400px) {
    .main {
        padding-top: 0;
    }
    header{
        position: static;
    }

    header nav a {
        float: none;
        width: 100%;
    }

    
}
