* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

h1 {
    font-family: Montserrat;
    text-transform: uppercase;
    font-weight: 600;
}

.uvod {
    background-image: url(img/home-bg-slider-img2.jpg);
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    color: white;
    text-align: center;
    font-family: Montserrat, sans-serif;
    flex-direction: column;
}

.uvod h2 {
    font-style: italic;
    font-family: Neuton, serif;
}

.uvod h1 {
    text-transform: uppercase;
    font-size: 48px;
    max-width: 800px;
    letter-spacing: 4px;
    word-spacing: 10px;
    line-height: 1.5em;
}

button {
    width: 190px;
    height: 60px;
    background-color: #27253a;
    color: #8e8e90;
    border: none;
    font-size: 18px;
    font-weight: 600;
    font-family: Montserrat;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.1s;
    cursor: pointer;
}

button:hover {
    background-color: #34304d;
    color: white;
    transition: 0.1s;
    border-width: 0px;
}

.whitebtn {
    border: #27253a 4px solid;
    background-color: white;
    color: #27253a;
    width: 260px;
}

.flexbox {
    display: flex;
    padding: 2px;
}

.centerbox {
    justify-content: center;
    align-items: center;
}

.flex.row {
    flex-flow: row;
    align-items: center;
}

.flexbox.column {
    flex-flow: column;
}

.limitedw {
    max-width: min(90vw,1000px);
}

.paddv {
    padding-top: 90px;
    padding-bottom: 90px;
}

.imgleft {
    width: 100%;
    min-width: 0;
    border: lightgray 1px solid;
    flex: 3;
}

.imgleft + div {
    flex: 2;
}

.flexbox.row > * {
    padding: 20px;
    margin: 20px;
}

p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 200;
}

.bg-lightgray {
    background-color: #f9f9f9;
}

.margv-small {
    margin-top: 6px;
    margin-bottom: 6px;
}

.fleximg {
    width: 100%;
    flex: 1;
}

.textcenter {
    text-align: center;
}

.bg-newsletter {
    background-image: url(img/newsletter-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

input {
    appearance: none;
    outline: none;
    background-color: transparent;
    border: none;
    border-bottom: 2px #989898 solid;
    color: #989898;
    height: 16px;
    transition: 0.1s;
    padding-left: 4px !important;
    padding-right: 4px !important;
    flex: 1;
}

input:focus {
    border-color: white;
    transition: 0.1s;
}

.logincontainer {
    width: 100%;
    max-width: 600px;
}

.logincontainer + button {
    width: 280px;
    color: white;
}

@media screen and (max-width: 600px) {
    .flexbox.row {
        flex-flow: column;
        align-items: center;

    }
    .uvod h1 {
        font-size: 32px;
        letter-spacing: 2px;
        word-spacing: 6px;
    }
}