* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", serif;
}

body {
    overflow: hidden;
}

header {
    padding: 0 20px;
    height: 60px;
    background: #e18d35;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left, .right {
    display: flex;
    gap: 10px;
}


.left div, .right div {
    width: 100px;
    border-radius: 5px;
    font-size: 15px;
    height: 35px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .3);
}

.left div {
    justify-content: center;
}

.right div {
    color: white;
    justify-content: center;
}

canvas {
    background: url("./../images/medievalTile_57.png");
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 120px;
    width: 100%;
    background: rgba(255, 255, 255, .3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.tools {
    display: flex;
    gap: 15px;
}

.tool {
    border-radius: 5px;
    border: 3px solid rgba(255, 255, 255, .3);
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tool.active {
    border: 3px solid #e18d35;
    margin: 0 1rem;
}