@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Honk&display=swap');

*{
    font-family: 'Honk', Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #B0E2B0;
}

img{
    width: 100px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2rem;
}

canvas {
    border: 3px solid rgb(7, 86, 65);
    background-color: white;
    border-radius: 10px;
    margin-bottom: 30px;
}

.controls{
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.controls div
{
    width: 180px;
    display: flex;
    justify-content: space-between;
}

button{
    width: 55px;
    height: 55px;
    background-color: #559a7a;
    border: 3px solid rgb(5, 63, 48);
    border-radius: 5px;
    font-size: 28px;
    color: rgb(5, 63, 48);
    cursor: pointer;
}

button:hover{
    background-color: rgb(5, 63, 48);
    color: #559a7a;
}
