* {
  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;
    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 {

    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;
    width: 4vh;
    height: 3vh;
}

.login, #idisplay{
    font-family: 'Pirata One';
    font-size: 2vh;
}



/*.panel {
    justify-content: center;
}

.selection {
    background-color: rgb(255, 225, 170);
    font-family: "Pirata One";
    font-size: 30px;
    text-align: center;
    position: relative;
    height: 50%;
    width: 50%
}

.selects {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: 300px;
}

.panellink {
    position:absolute; 
    width:100%;
    height:100%;
    top:0;
    left: 0;

    z-index: 1;

    /* fixes overlap error in IE7/8, 
        make sure you have an empty gif *//*
    background-image: url('empty.gif');
}

.selection:hover {
    background-color: rgb(253, 209, 127);
}*/


footer {
    width: 100%;
    text-align: center;
    color: rgb(214, 214, 214);
    font-family:'Arial';
    font-size: 100%;
    background-color: rgb(65, 65, 65);

}

.info {
    padding-top: 30px;
    padding-bottom: 10px;
}

.placeholder {
    height: 300px;
}

.dice {
    font-family: 'Pirata One';
    font-size: 3vh;
}

.diceel {
    width: 4vh;
    height: 2vh;
}


#roll {
    background-color: rgb(54, 39, 28);
    border: none;
    color: white;
    font-family: 'Pirata One';
    text-align: center;
    border-radius: 2vh;
    cursor: pointer;
    width: 6vh;
    height: 4vh;
    transition-duration: 0.1s;
}
#roll:hover {
    background-color: rgb(24, 20, 18);
}