/* General Styling */
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #303239;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app {
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

#canvas-container {
    position: relative;
    margin: 0 auto;
}

canvas {
    display: block;
    margin: 0 auto;
    touch-action: none; /* Disable browser scrolling/moving on canvas */
    width: 100%;
    max-width: 500px;
}

#description {
    color: #60ff60;
    margin-bottom: 20px;
    font-size: 18px;
}

.top {
    margin-bottom: 20px;
    color: #CCC;
    font-family: Roboto, sans-serif;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    color: #faf8f6;
}

.main-text h1 img {
    vertical-align: middle;
    margin-right: 10px;
    padding-bottom: 5px;
}

.main-text h1 {
    margin: 0;
    font-size: 36px;
}

.btn {
    display: inline-block;
    margin: 5px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    background-color: #4a4e69;
    color: #faf8f6;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: #22223b;
}

.controls {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.controls .btn {
    flex: 1 1 auto;
    max-width: 100px;
}
