@import url('https://fonts.googleapis.com/css2?family=Inter&family=Roboto&display=swap');

* {
    border: 0px solid red;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', 'Roboto', Helvetica, Arial, sans-serif;
    background-image: url(./images/background.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    width: 960px;
    margin: auto;
    gap: 16px;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: mediumslateblue;
    margin-top: 16px;
    padding-left: 64px;
    padding-right: 64px;
    border-radius: 16px;
    border: 3px solid black;
}

h1 {
    text-align: center;
    color: white;
}

.options {
    display: flex;
    gap: 16px
}

button {
    cursor: pointer;
    font-size: 18px;
    background-color: beige;
    border: 2px solid black;
    border-radius: 8px;
    padding: 8px;
}

button:hover {
    background-color: white;
}

button:active {
    border: 2px solid white;
}

.canvas {
    border: 3px solid black;
}

.rowDiv {
    display: flex;
    height: auto;
    width: auto;
    border: 0px solid black;
    margin: 0;
    padding: 0;
}

.colDiv {
    background-color: white;
    border: 0px solid black;
}