body {
    background-image: url("background_tile.png");
    background-repeat: repeat;
    margin: 0;
    color: white;
    overflow: hidden;
    margin: 0;
    overflow-x: hidden;
}

#draggableBox {
    transition: box-shadow 0.2s;

    width: auto;
    height: 100px;
    background-color: #2b383d;
    position: absolute;
    top: 500px;
    left: 500px;
    cursor: move;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #5f6568;
    border-radius: 20px;
    transform: translate(-50%, -50%);
}

#draggableBox:hover {
    transition: box-shadow 0.2s;

}

#boxtext {
    text-shadow: 2px 2px 4px #0000004d;
    font-size: 20px;
    width: 20px;
    overflow: show;
    height: auto;
    background-color: transparent;
    color: white;
    border: none;
    outline: none;
    text-align: center;
}

#setting {
    text-shadow: 2px 2px 4px #0000008a;
    font-size: 25px;
    user-select: none;
    position: absolute;
    top: 0;
    right: 5px;
    color: white;
    transition: color .2s;
    cursor: pointer;
}

#setting:hover {
    font-size: 25px;
    user-select: none;
    position: absolute;
    top: 0;
    right: 5px;
    color: rgb(141, 141, 141);
    transition: color .2s;
}

#settingsBox {
    cursor: default;
    width: 200px;
    height: 300px;
    text-shadow: 2px 2px 4px #0000008a;
    background-color: #2b383d;
    border: 2px solid #5f6568;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
    font-size: 16px;
}

input[type="radio"] {
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 30px;
    height: 20px;
    border: 2px solid #5f6568;
    border-radius: 4px;
    outline: none;
    margin-right: 5px;
}

input[type="radio"]:checked{
    border: 2px solid #ffa600;
}

#lineContainer {
    margin-top: 52px;
    position: absolute;
    height: 100%;
    width: 100%;
}

#line {
    stroke: red;
    stroke-width: 2px;
}

#toolbar {
    width: 100%;
    height: 50px;
    background-color: black;
    border-bottom: 2px solid #5f6568;
    z-index: 9999;
    position: absolute;
}

.tool {
    transition: background-color .2s;
    background-color: #2b383d;
    color: white;
    border: none;
    padding: 11px;
    top: 100px;
    border: 4px solid black;
    font-size: 16px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.tool:hover {
    transition: background-color .2s;
    background-color: #1d2529;
}
