/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 20px;
}

.judul {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 20px;
}


input, button {
    margin: 10px;
    padding: 10px;
    font-size: 16px;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

canvas {
    width: 80%;
    height: auto;
    margin: auto;
    display: block;
}

.description {
    font-size: 10px;
    margin-top: 5px;
}

.summary {
    background-color: rgba(173, 216, 230, 0.3);
    padding: 15px;
    margin-top: 3cm;
    border-radius: 5px;
}

.bold {
    font-weight: bold;
}
