@import url('https://fonts.googleapis.com/css2?family=Eagle+Lake&family=Lobster&family=Michroma&family=VT323&display=swap');
@font-face
{
    font-family: 'DnD';
    font-weight: normal;
    font-style: normal;
    src: url('./czcionka/DragonHunter-9Ynxj.otf');
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0a0b12;
    background-image: url("./img/moon.png");
    background-position: 0px -100px;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

#banner{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 50px;
}
#Title{
    width: 365px;
    height: 100%;
    margin: 0px;
    padding: 20px;
}

#dnd{
    color: white;
    font-family: "DnD";
    font-size: 10px;
    letter-spacing: 10px;
    text-shadow: black 3px 2px 10px;
    margin: 0;
    margin-left: 40px;
    padding: 0;
}
#lunarium{
    color: #8c4939;
    text-shadow: #1e1a24 4px 3px 7px; 
    font-family: "Eagle Lake";
    text-decoration-line: none;
    font-size: 20px;
    margin-left: 1px;
    margin-top: -5px;
}

#black-box-flex{
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    height: auto;
}

#box-title{
    color: white;
    text-align: center;
    font-size: 50px;
    margin-top: -70px;
}

#black-box-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 50px;
    padding: 25px;
}

/* KOŚCI */
#dices{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.dice{
    text-align: center;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}

#k4{
    background-color: green;
}

#k6{
    background-color: blue;
}

#k8{
    background-color: purple;
}

#k10{
    background-color: pink;
}

#k12{
    background-color: red;
}

#k20{
    background-color: orange;
}

#rzut{
color: white;
text-align: center;
padding: 20px;
font-size: 35px;
}

#rzuty{
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

/* KALKULATOR */
#kalkulator{
    font-family: Arial;
    background-color: black;
    border-radius: 15px;
    max-width: 400px;
    overflow: hidden;
}
#display{
    padding: 20px;
    font-size: 5rem;
    text-align: center;
    border: none;
    background-color: white;
    color: #0a0b12;
    width: 400px;
}
#keys{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    padding: 25px;
}
.calcButt{
    width: 80px;
    height: 80px;
    font-size: 40px;
    border-radius: 50px;
    border: none;
    background-color: #1e1a24;
    color: white;
    cursor: pointer;

}
#calcButt:hover{
    background-color: green;
}
#calcButt:active{
    background-color: purple;
}
.operator-butt{
    background-color: rgb(202, 107, 19);
}
.operator-butt:hover{
    background-color: rgb(146, 81, 19);
}
/* KALKULATOR */



  footer{
    height: 50px;
  }

 [onClick] {
    cursor:pointer;
}
