body {
    background-color: FFEC00;
    height:80%;
    font-family: "Sora", sans-serif;
    padding: 0;
    margin: 0;
}

.content {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    height: 80%;
}

h1, h3, p {
    text-align: center;
}

#banner {

    margin: auto;
    margin-top: 100px;
    background-color: #FF4910;
    border-radius: 10px;
    border: 5px solid;
    box-shadow: 10px 10px black;
    width: 80% 
}

.canvas-box {
    padding: 10px;
    border: 5px solid;
    border-radius: 10px;
    background-color: antiquewhite;
    margin: 10px;
    box-shadow: 10px 10px black;
}

canvas {
    padding: 10px;
}

.center {
    display: flex;
    justify-content: center;
}

.horizontal {
    display: flex;
    justify-content: space-evenly;
}

 #imgUp {
    background-color: FF0186;
    height: 60px;
    width: 200px;
    border: 5px solid;
    border-radius: 5px;
    box-shadow: 10px 10px black;
    cursor:pointer;
    font-family: "Sora", sans-serif;
    font-size: large;
    margin-right: 25px;
}

#imgUp:hover {
    top:-10px;
    background-color: pink;
}

#imgUpHidden {
    display: none;
}

input {
    height: 75px;
    font-family: "Sora", sans-serif;
    font-size: large;
    margin: 10px;
}