/* Allgemeines CSS*/
* {
  box-sizing: inherit;
}

.pirata-one-regular {
  font-family: "Pirata One", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
    display: flex;
    flex-direction: column;
    background-color: rgb(204, 179, 147);
    min-height: 100vh;
    margin: 0 auto;
}

header {
    text-align: center;
    padding-top: 5px;
}

.top {
    background-color: rgb(185, 162, 132);
    
}

nav {
    display: flex;
    justify-content: space-evenly;
    font-size: 150%;
    padding-left: 5%;
    padding-right: 5%;    
    font-family: "Pirata One";
}

h1 {
    font-family: "Pirata One";
}

a:link, a:visited {
    color:black;
    text-decoration: none;
    transition-duration: 0.15s;
}

a:hover {
    color:grey;
}

footer {
    width: 100%;
    text-align: center;
    color: rgb(214, 214, 214);
    font-family:'Arial';
    font-size: 100%;
    background-color: rgb(65, 65, 65);

    margin-bottom: 0;

}

.info {
    padding-top: 30px;
    padding-bottom: 10px;
}

.main {

    min-height: 5em;
    flex: 1;
}

.button, #loginbutton, #logout {
    background-color: rgb(54, 39, 28);
    border: none;
    color: white;
    font-family: 'Pirata One';
    text-align: center;
    border-radius: 2vh;
    cursor: pointer;
    width: 4vh;
    height: 3vh;
}

.login, #iddisplay{
    font-family: 'Pirata One';
    font-size: 2vh;
}

.text {
  font-family: Arial, Helvetica, sans-serif;
}

#newUser {
    background-color: rgb(54, 39, 28);
    border: none;
    color: white;
    font-family: 'Arial';
    text-align: center;
    border-radius: 2vh;
    cursor: pointer;
    width: 8vh;
    height: 5vh;
    transition-duration: 0.1s;
}
#newUser:hover {
    background-color: rgb(24, 20, 18);
}