* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding: 20px;
}

.top {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 20px;
    align-items: flex-end;
}

.black {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.black p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-control,
#fontSize {
    width: 250px;
    height: 35px;
    border: 1px solid #000;
    cursor: pointer;
}

.canvas {
    display: block;
    margin: 0 auto;
    border: 3px solid #000;
    background-color: white;
    cursor: crosshair;
}

.bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.bottom button {
    flex: 1;
    max-width: 267px;
    height: 40px;
    border: 1px solid #999;
    background-color: #e0e0e0;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

#clearButton{
    background-color:#F4320B;
}
#saveButton{
    background-color: #27CC35;
}
#retrieveButton{
    background-color: #E1E352;
}