@font-face {
    font-family: Lora;
    src: url(../assets/fonts/Lora-VariableFont_wght.ttf);   
}

@font-face {
    font-family: Raleway;
    src: url(../assets/fonts/Raleway-VariableFont_wght.ttf);
}

body {
    font-family: Lora;
    margin: 0;
    overflow-x: hidden
}

.hidden {
    display: none;
}

p {
    font-size: 17px;
    margin: 0;
}

a {
    color: white;
    text-decoration: none;
}

h1 {
    font-size: 55px;
    font-family: Raleway;
    font-weight: bold;
    background-color: #A21A41;
    color: white;
    padding: 0 10px;
    margin: 0;
}

h2 {
    font-size: 150px;
    font-weight: 800;
    color: white;
    -webkit-text-stroke: 0.5px #808080;
    margin: 0;
}

h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

li {
    font-size: 17px;
}

.line {
    background-color: black;
    height: 0.5px;
    width: 80px;
}

@media (max-width: 1100px) {
    p {
        font-size: 15px;
    }

    h1 {
        font-size: 24px;
    }

    body {
        overflow-x: hidden;
    }
}

/* ---------------------------- */
/* ---------- Header ---------- */
/* ---------------------------- */

.header {
    height: 180px;
    box-shadow: 0px 1px 5px rgba(110, 110, 110, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 70px;
    }

    .header-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 1200px;
    }

    .header-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-logo p{
        font-family: Raleway;
        width: 125px;
        line-height: 1.3em;
        margin: auto 0;
    }

    .header-logo img {
        height: 60px;
        padding-right: 20px;
    }

    .header-kontakt {
        font-size: 17px;
        font-weight: 800;
        background-color: #A21A41;
    }

    .header-kontakt a {
        padding: 5px 15px;
        color: white;
        text-decoration: none;
        font-family: Raleway;
    }

    @media (max-width: 550px) { 
        .header {height: 90px; padding: 0 40px;}
        .header-logo img {height: 30px;}
        .header-kontakt {font-size: 12px;}
        .header-kontakt a {padding: 5px 10px;}
        .header-box p {font-size: 10px;}
    }

/* ------------------------------------ Main ------------------------------------ */

.main {
    margin: 100px auto;
    width: 900px;
}

h1 {
    font-size: 50px;
    font-weight: 700;
    color: black;
    background-color: white;
    padding: 0;
    margin-bottom: 20px;
}

.main form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.data {
    width: 400px;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    font-weight: 300;
}

.data input {
    border-radius: 4px;
    border: 1px solid #808080;
    margin: 5px 0 20px 0;
    padding: 10px 5px;
}

.txt {
    width: 400px;
    display: flex;
    flex-direction: column;
}

.txt textarea {
    height: 160px;
    padding: 10px 5px;
}

button {
    background-color: #A21A41;
    color: white;
    padding: 10px 0;
    border: none;
    border-radius: 4px;
    margin-top: 10px;
}

@media (max-width: 1100px) {
    .main {
        margin: 100px auto;
        width: 330px;
    }

    .main form {
        flex-direction: column;
    }

    .data, .txt {
        width: 330px;
    }
}
/* ---------------------------- */
/* ---------- Footer ---------- */
/* ---------------------------- */

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #A21A41;
    height: 240px;
}

    .footer a {
        padding-right: 100px;
        font-family: Raleway;
        text-decoration: none;
        color: white;
    }

    .footer a:hover {
        text-decoration: underline;
}

@media (max-width: 820px) {
    .footer {height: 120px;}
    .footer a{padding-right: 30px; font-size: 12px;}
}