/*
Theme Name: Arthome
Author: Wojciech Mazur
Author URI: https://wmazur.pl
Description: Arthome Wordpress theme
Version: 1.0
*/

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

body::-webkit-scrollbar {
    width: 3px;
}
 
body::-webkit-scrollbar-track {
    background-color: black;
    outline: none;
}
 
body::-webkit-scrollbar-thumb {
  background-color: #fefe00;
}

.content {
    display: flex;
}

#content {
    /* background: red; */
    min-height: 100vh;
    overflow: auto;
}

.ruler {
    width: 36px;
    min-height: 100%;
    padding: 0;
    margin: 0;
    background: url('assets/img/ruler.png') no-repeat;
    background-repeat: repeat-y;
    z-index: 1;
    box-shadow: 4px 0px 10px -4px rgba(0,0,0,0.75);
}

.page {
    width: 100%;
}

header {
    background: black;
    color: white;
    width: 100%;
    height: 100px;
    display: flex;
}

header nav>div {
    height: 100%;
}

/* Horizontal menu */
header nav>div ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav>div ul li {
    margin: 0 10px;
}

header nav>div ul li a {
    color: #c7c7c7;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 300;
}

header h1 {
    margin: 0;
    padding: 0;
    line-height: 100px;
    text-align: center;
}

header .logo {
    height: 100%;
    padding: 15px;
    box-sizing: border-box;
}

header .logo img {
    height: 100%;
}

/* WP Gallery */
.wp-block-gallery {
    background: black;
    padding: 0.5rem 0;
    margin: 0;
}

/* Footer */

footer {
    background: black;
    width: 100%;
}

footer p {
    margin: 0;
}

footer .contact__button {
    background: #fefe00;
    padding: 10px;
    text-align: center;
}

footer .contact__button a {
    display: block;
    color: white;
    margin: 0 auto;
    text-align: center;
    width: 30%;
    padding: 20px 10px;
    border: 1px solid #ffffff78;
    background: #00000099;
    text-decoration: none;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
}

footer .info__section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 300px;
    border: 10px solid red;
    box-sizing: border-box;
}

footer .copy {
    color: rgb(104, 104, 104);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
}

footer .copy a {
    color: rgb(104, 104, 104);;
    text-decoration: none;
}

footer .copy a:hover {
    color: white;
}

/* Hide ruler if width screen < 1000px */

@media (max-width: 1000px) {
    .ruler {
        display: none;
    }
    nav {
        display: none;
    }
}