@font-face {
    font-family: "Manrope";
    src: url("../../fonts/Manrope-VariableFont_wght.ttf") format("truetype");
    font-weight: 200 800;
    font-style: normal;
}

@font-face {
    font-family: "Merriweather";
    src: url("../../fonts/Merriweather-VariableFont_opsz\,wdth\,wght.ttf") format("truetype");
    font-weight: 300 900;
    font-style: normal;
}

@font-face {
    font-family: "Merriweather1";
    src: url("../../fonts/Merriweather-Italic-VariableFont_opsz\,wdth\,wght.ttf") format("truetype");
    font-weight: 300 900;
    font-style: italic;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    /* overflow-x: hidden; На всякий случай блокирует горизонтальный скролл */
}
body {
    width: 100%;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: rgb(255, 255, 255);
    height: 7vh;
    box-shadow: 2px 2px 16px rgb(109, 109, 109);
    font-family: Manrope;
    font-weight: 900;
    font-size: 16px;
    position: relative; 
    z-index: 10;
    padding-left: 2vw;
}
.logo-picture-header {
    height: 90%;
}
main {
    width: 100%;
    height: 86vh;
    /* background: 
        linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
        url('../../images/background\ main.png') center/cover no-repeat;

    background-repeat: no-repeat;
    background-size: cover; */
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}
.main-text-titel {
    color: black;
    font-family: Manrope;
    font-style: normal;
    font-weight: 1200;
    text-align: center;
    font-size: 50px;
}
.main-input-startbutton {
    font-family: Manrope;
    text-align: center;
    width: 40vh;
    height: 5vh;
    font-size: 20px;
    margin-top: 3vh;
    font-weight: bold;
}
.header-nav-box {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-nav-box p {
    margin-right: 4vw;
}
footer {
    background-color: rgb(0, 24, 0);
    height: 7vh;
}

.input-value {
    width: 30vw;
    height: 7vh;
    margin-bottom: 7vh;
}

.input-button {
    background-color: white;
    font-family: Manrope;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.error {
    display: none;
    color: black;
    font-family: Manrope;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}
.header-nav-box a {
    color: black;
    text-decoration: none;
    
}
#personname {
    display: none;
}