@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&family=Orbitron:wght@400..900&display=swap');

body {
    background-color: rgb(37, 37, 37);
    color: white;
    margin: 0;
    font-family: "Jura", sans-serif;
}

/* vrchní panel */
nav {
    display: flex;
    background-color: rgb(0, 0, 0, 0.6);
    align-items: center;
    position: fixed;
    width: 100%;

}

/* odkaz jako normální text */
nav>a {
    text-decoration: inherit;
    color: inherit;

}

/* Meníčko */
.polozka_menu {
    padding: 15px;
    font-size: 30pt;
    font-weight: 400;
    flex-grow: 1;
    text-align: center;
    font-weight: 700;
}

.polozka_menu {
    transition: all 0.25s ease-in-out;
}

.polozka_menu:hover {
    background-color: whitesmoke;
    color: black;
}

/* Chemie nadpis */
.jmeno {
    flex-grow: 1;
    font-size: 40pt;
    padding-left: 50px;
    font-family: "Jura", sans-serif;
}

/* hero banner */
header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 25pt;
    color: rgb(255, 255, 255);


    background-size: cover;
}

header.home {width: 100vw;
    height: 100vh;
    margin: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("bg.jpg");
}

header.produkty {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("produkt.jpg");
}
header.telefon {width: 100vw;
    height: 100vh;
    margin: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("telefon.avif");
}

header.ceny {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("cena.avif");
}

h1 {

    margin: 0;
    font-size: 90pt;
}

/* sekce - home */
section {
    height: 70vh;
    background-color: black;
    padding-top: 80px;
    padding-left: 100px;
    padding-right: 100px;
    font-size: 20pt;
    text-align: justify;
}

h2 {
    font-size: 40pt;
    margin-top: 0;
    margin-bottom: 20px;
}

.nadpis-left {
    text-align: left;
}

.nadpis-right {
    text-align: right;
}

.section-text {
    display: flex;
    flex-direction: row;
    margin: 0;
}

text {
    padding-left: 20px;
    width: 200px;
}

.home {
    width: 450px;
    height: 450px;
    margin-left: 50px;

}

.right {
    background-color: rgb(27, 1, 51);

}

.obrazek_left {
    margin-left: -70px;
    margin-right: 50px;
}

/* oceneni */
.oceneni {
    text-align: center;
}

.medaile {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
}


.medaile_obrazek>img {
    width: 500px;
}

/* kontakt */
.kontakt {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 70px;
}

