{% load static %}

body {
    background-color: #333;
    color: blanchedalmond;
    letter-spacing: 1px;
    font-family: "peaceSans";
}

#explanation {
    font-family: 'Tahoma', sans-serif;
    margin: 40px;
}

a {
    color: burlywood;
}

#canvases {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

@font-face {
    font-family: peaceSans;
    src: url("../fonts/PeaceSans/PeaceSans.otf");
}
  
div {
    margin: 40px 0 0 20px;
}

h2 {
    font-family: "peaceSans";
    font-weight: normal;
    margin-bottom: 0;
    color: blanchedalmond;
}

canvas {
    background-color: goldenrod;
    width: 400px;
    height: 400px;
}

input[type="text"] {
    display: block;
    width: 393px;
}

#settings {
    margin-left: 0;
}

input[type="number"] {
    width: 60px;
}

#delay-units {
    font-size: small;
}


@media screen and (max-width: 660px) {
    div {
        margin: 20px 0 0 0px;
    }

    canvas {
        width: 300px;
        height: 300px;
    }

    input[type="text"] {
        width: 293px;
    }
}
    
