* {
  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;
}

.container {
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    padding-top: 5px;
}

.top {
    background-color: rgb(185, 162, 132);
    
}

nav {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    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;
}



.main {
    flex-direction: column;
    min-height: 5em;
    flex: 1;
}

#infotext {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4vh;
    color: black;
    text-align: center;
}

.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;
    height: 3vh;
}

.login, #idisplay{
    font-family: 'Pirata One';
    font-size: 2vh;
}

footer {
    width: 100%;
    text-align: center;
    color: rgb(214, 214, 214);
    font-family:'Arial';
    font-size: 100%;
    background-color: rgb(65, 65, 65);

}

/* Info */

#noLogin, #noActions {
    font-family: "Pirata One";
    font-size: 5vh;
    text-align: center;
}

/* Aktionen */

#main {
    width:100%;
    height:100%;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

#actionTitle {
    text-align: center;
}

.action {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2%;
    background-color: rgb(168, 146, 116);
    border: 1vh solid rgb(87, 73, 56);
    border-radius: 3vh;
    margin: 1vh 15vh;
}
.actionElements {
    display: flex;
    flex-direction: row;
}


#actionName {
    font-family: 'Pirata One';
    text-align: center;
    font-size: 3vh;
}


#descriptionDiv {
    flex: 7.5;
}
#attributeDiv {
    flex: 2.5;
    display: flex;
    flex-direction: column;
    justify-content: left;
    background-color: rgb(139, 116, 86);
    border-radius: 2vh;
}

.attribute {
    padding: 2%;
    flex-direction: column;
    font-family: "Pirata One";
    font-size: 130%;
}
#description {   
    font-family: "Pirata One";
    font-size: 130%;
}

#searchbar {
    width: 60%;
    margin: 0 auto;
}
#toprow {
    display: block;
}