#container {
    background-color: rgb(240, 240, 240);
    max-width: 500px;
    margin: 40px auto;
    padding-bottom: 30px;
    position: relative;
    border-radius: 7px;
    border: 1px solid lightgrey;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#container h1 {
    padding-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

#container>p {
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
}

#buttons {
    text-align: center;
    margin-bottom: 20px;
}

#buttons button {
    margin: 0 10px;
}

#container svg {
    margin: auto;
    display: block;
    width: 400px;
    height: 400px;
    border: 1px solid grey;
    border-radius: 2px;
}


#adjust-dialog {
    position: absolute;
    background-color: white;
    left: 50%;
    transform: translateX(-50%) translateY(180px);
    border: 1px solid lightgrey;
    padding: 20px 6px;
    width: 330px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 3px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#adjust-dialog input {
    margin-top: 12px;
    width: 60%;
}