
body {
    font: sans-serif;
}
#flexRow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* justify-items: center; */
    min-width: 300px;
    /* margin: 0 auto; */
    /* max-width: 350px; */
    gap: 8px;
}
input[type=image] {
    white-space: nowrap;
    display:inline-block;
}
#centerMenu {
    position: fixed;
    top: 50%;
    left: 50%;
    /* margin-top: -30%;
    margin-left: -40%; */
    /* width: 80%; */
    /* height: 60%; */
    /* background-color: yellowgreen; */
    /* margin: 0 auto; */
    transform: translate(-50%, -50%);
}
#bottomMenu {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 25%;
    /* margin-top: -150px;
    margin-left: -150px;
    width: 250px;
    height: 250px; */
    /* background-color: yellow; */
    /* margin: 0 auto; */
}
#topMenu {
    font-size: xx-large;
    position: fixed;
    top: -230px;
    width: 100%;
    height: 18%;
    /* margin-top: -150px;
    margin-left: -150px;
    width: 250px;
    height: 250px; */
    /* background-color: rgb(255, 0, 0); */
    /* margin: 0 auto; */
    /* display: none; */
}
#craftContainer {
    position: fixed;
    right: 0px;
    width: 400px;
    height: 100%;
    background-color: rgb(225, 22, 56);
}

#rightMenu {
    position: fixed;
    right: 0px;
    width: 400px;
    height: 100%;
    background-color: lightcyan;
    overflow-x: hidden;
    overflow-y: auto;
}     
​.desktop {
    display: none;
}
.mobile {
    display: block;
}
@media (min-width: 768px) {
    .desktop {
        display: block;
    }
    .mobile {
        display: none;
    }
}

div {
    display: inline;
}
button {
    width: 200px;
    margin: 5px;
    height: 50px;
}
.roundCorners
{
    border-radius: 15px;
    /* moz-border-radius: 15px; //If using Firefox */
    background-color: #333;
    border: 4px solid #dce7cc;
    box-shadow: 5px 5px 5px lightblue;
}
.round
{
    border-radius: 15px;
}
/* * {
  box-sizing: border-box;
} */
/* body {
    font-size: larger;
} */
/* .column {
  float: left;
  width: 25%;
  padding: 10px;
} */
/* .row:after {
  content: "";
  display: table;
  clear: both;
} */
.floating {
    position: relative;
    width: 90%;
    padding: 10px 5%;
    background: white;
    transition: all 1.3s ease;
    animation: float 1.5s ease-in-out 0s infinite forwards;
}
/* .center {
    text-align: center;
}

.column50 {
    width: 50%;
    padding: 10px;
}

.column502 {
    width: 100%;
    padding: 10px;
} */

#log {
    background-color: black;
    color: rgb(2, 171, 2);
}
::backdrop {
    background-image: linear-gradient(
        45deg,
        magenta,
        rebeccapurple,
        dodgerblue,
        green
    );
    opacity: 0.75;
}
input[type=image]:disabled {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: gray; 
    -webkit-filter: grayscale(100%); 
    opacity: 0.5;
}

/* Animations */
.slideRight {
    transition: 0.25s;
    transition-timing-function: ease-out;
    transform: translate(100%);
}

.slideLeft {
    transition: 0.25s;
    transition-timing-function: ease-out;
    
    transform: translate(0%);
}

.slideNone {
    transition: 0.25s;
    transition-timing-function: ease-out;
    
    transform: translateY(0%);
}

.slideDown {
    transition: 0.25s;
    transition-timing-function: ease-out;
    
    transform: translateY(100%);
}

.slideUp {
    transition: 0.25s;
    transition-timing-function: ease-out;
    
    transform: translateY(100%);
}