html {
    height: 100%;
}

body {
    margin: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("art/bg.png");
    background-repeat: repeat;
}

#game {
    border: 3px solid black;
    background-color: #ffffff;
}

#module-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(128, 128, 128, .5);
    border-radius: 10px;

    display: flex;
    flex-direction: column;
}

#module-menu h1 {
    margin: 0 1em;
    text-align: center;
    user-select: none;
}

#module-menu button {
    display: block;
    position: relative;
    background: cornsilk;
    border: 3px solid cornsilk;
    margin: 1em;
    text-align: left;
    height: 100px;
    padding-right: 1em;
    border-radius: 10px;
    cursor: pointer;
}

#module-menu button:hover {
    border-color: hsl(48, 100%, 53%);
}

#module-menu button * {
    pointer-events: none;
}

#module-menu button .icon {
    position: absolute;

    transform: translate(-50%, -50%) scale(.5);
    transform-origin: center;
    top: 50%;
    left: 60px;
}

#module-menu button .description {
    margin: 0 0 0 120px;
}