/* CSS HEX 
--dark-green: #132015ff;
--emerald: #12B96Bff;
--sea-green: #36865Cff;
--ash-gray: #CEDCD0ff;
--dark-green-2: #122C15ff;
*/

body {
    background-color: rgb(0, 0, 0);
    margin: 50px;
    font-family: Calibri; /* tohle je nádhernej font! */
    
}

#uvod {
    max-width: 500px;
}

.email { /* styl pro emailovou adresu */
    color: rgb(127, 202, 127);
    font-weight: bold;
}

pre {
    display: flex;
    width: fit-content;
    border: 1px solid green;
    font-size: 18px;
}

.topnav {
    font-size: 18px;
    text-transform: uppercase;

}

.secondnav .button {
    font-size: 14px;
    text-transform: lowercase;
    background: #132015ff;
}

.button {
    background-color: black;
    border: 1px solid green;
    color: #36865Cff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;

    margin: 4px 2px;
    cursor: pointer;
    border-radius: 0px;
}

.back-to-top {
    position: fixed;
    cursor: pointer;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    text-decoration: none;
    font-size: 30px;
    color: green;
}

.button:hover {
    background-color: green;
    color: black;
}

h1 {
    color: green;
    font-size: 40px;
}

h2 {
    color: green;
    text-transform: lowercase;
    font-size: 30px;
}

h3 {
    color: green;
}

p {
    color: rgb(220, 220, 220);
    max-width: 600px;
}

ul {
    color: rgb(143, 219, 120);
    list-style-type: square;
    padding-left: 20px;
}