/*
Theme Name: Centrum
Author: Waldschmidt Zoltán Krisztián
Description: Centrum
Version: 1.0
*/

@import "css/layout/_header.css?v=1.242";
@import "css/layout/_footer.css?v=1.242";
@import "css/_common.css?v=1.242";
@import "css/_home.css?v=1.242";

html,
body {
    height: 100%;
}

body {
    color: #000;
    /*background: rgb(247, 247, 247);*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    min-height: 100%;
    font-family: "Montserrat", serif;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: .2px;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s linear, visibility 1s linear;
}

body.loaded {
    opacity: 1;
    visibility: visible;
}

body.fixed {
    position: fixed;
}

main {
    flex: 1;
    padding: 0 0 60px;
}

h1,
h2,
h3,
h4,
h5,
h6 {    
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    margin-bottom: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

*:focus {
    outline: none;
}

a,
button,
input,
textarea {
    transition: all .25s ease-in-out;
}

input,
textarea {
    max-width: 100%;
}

textarea {
    resize: none;
    height: 100px;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #e73137;
    text-decoration: none;
}

a:active {
    color: #e73137;
}

button:not(:disabled),
input[type="submit"]:not(:disabled) {
    color: #fff;
    background: #e73137;
    border: 1px solid #e73137;
}

button:not(:disabled) {
    border: 1px solid #e73137;
}