/* SECTION */
section {
    width: 100vw;
    height: 100vh; /* Changed to 100vh to always take full window height */
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
    margin-top: 0;
    padding-top: 0;
}

.background, .drawing-background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh; /* Changed to 100vh to always take full window height */
    position: relative;
    background-image: url(../images/Backgrounds/DrawingBG.jpg);
}

.text-overlay {
    text-align: center;
    background-color: #eeeeee;
    color: rgb(82, 82, 82);
    padding: 30px 42px;
    margin: 32px;
    line-height: 1.5;
    z-index: 1;
    display: grid;
}

.text-overlay a {
    color: rgb(82, 82, 82);
}

/* CANVAS */
.drawing-board {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: url(../images/Cursors/pencursor18.png) 0 30, crosshair; /* Fallback to crosshair */
}