* {
    box-sizing: border-box;
    background: black;
    user-select: none;
}


h1, a {
    font-family: 'Arial';
    color: white;
    text-align: center;

}

#regressionCanvas {
    margin-top: 5vh;
    display: flex;
    justify-content: center;
}

#canvas {
    width: 800px;
    height: 800px;
    background: transparent;
    border: 2px solid white;
    border-radius: 10px;
}

#controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 50px;
}

#controls div {
    margin: 20px 0px;
    font-size: 15px;
    font-family: "Arial";
    text-align: center;
    padding: 12px;
    border: 1px solid orange;
    border-radius: 15px;
    transition: all 0.1s ease-in-out;

    background: transparent;
    color: orange;
}
#controls div:hover {
    transform: scale(1.2);
    box-shadow: 2px 2px 20px orange;
    border: 1px solid orange;
    background: orange;
    color: black;
}

#controls input {
    transform: scale(1.5);
}
#controls label {
    background: transparent;
}


#lossPlotCanvas {
    margin: 5vh auto;
    display: block;
    border: 2px solid white;
    border-radius: 10px;
    width: 300px;
    height: 200px;
}