* {
    font-family: "Varela Round";
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(215, 237, 245);
}

a {
    color: white;
    text-decoration: none;
    background-color: hsl(196, 80%, 35%);
    border: solid;
    border-radius: 5px;
    border-width: 1px;
    border-color: rgb(215, 237, 245);
    padding: 0px 3px 0px 3px;
}

button {
    cursor: pointer;
    font-size: larger;
    color: white;
    text-decoration: none;
    background-color: hsl(196, 80%, 35%);
    border: solid;
    border-radius: 5px;
    border-width: 1px;
    border-color: rgb(215, 237, 245);
    padding: 0px 3px 0px 3px;
}

button:hover {
    background-color: hsl(196, 80%, 50%);
}

h1 {
    color: hsl(196, 80%, 25%);
    text-align: center;
}

h2 {
    color: hsl(196, 80%, 25%);
    text-align: center;
}

p {
    text-align: center;
}

input {
    padding: 0px 0px 10px 0px;
}

.canvas-box {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.canvas-container {
    display: flex;
    justify-content: space-around;
    align-content: space between;
    flex-wrap: wrap;
    width: 240px;
    row-gap: 20px;
}

img, canvas {
    width: 100px;
    min-height:50px;
    max-height: 200px;
    border-radius: 10px;
    border: 2px dashed hsl(196, 80%, 35%);
    padding: 4px;
    background-color: white;
}