* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body {
    font-family: sans-serif;
    background: #fff;
    text-align: center;
    max-width: 600px;
    position: relative;
    margin: 0 auto;
}
ul {
    list-style: none;
}
ul li {
    line-height: 2em;
}
header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 0.5em;

}
header h1 {
    padding: 30px;
}
#logo {
    width: 100%;
}

#dropzone {
    border: 3px dashed #aaa;
    padding: 20px;
    width: 320px;
    margin: auto;
    background: white;
    cursor: pointer;
    transition: 0.2s;
}

#dropzone:active {
    transform: scale(0.97);
    background: #f0f8ff;
}

#memeInput {
    margin-top: 10px;
    padding: 6px;
    width: 250px;
}

#scene {
    position: relative;
    width: 400px;
    height: 360px;
    margin: 20px auto;
}

.person {
    position: absolute;
    width: 90px;
}

#memeText {
    position: absolute;
    top: 10px;
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-shadow: 3px 3px 6px black;
}

canvas {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

button {
    margin: 8px;
    padding: 8px 16px;
    font-size: 16px;
}
