body {
    background-color: rgb(60, 60, 60);
}

* {
    font-family: "Comic Sans MS";
}

form {
    display: flex;
    margin: auto;
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
    background-color: rgb(50, 50, 50);
    box-shadow: 0 10px 0 rgb(30, 30, 30);
    flex-direction: column;
    width: 400px;
    gap: 15px;
    justify-content: center;
}

form > * {
    margin: 0;
}

input:hover, button:hover {
    transform: scale(1.01);
}

input:focus {
    outline: none;
}

input, button {
    font-size: 20px;
    border-radius: 10px;
    border: none;
    transition: all 0.1s;
    padding: 8px;
    color: rgb(50, 50, 50);
    margin: auto;
}

input {
    font-weight: 500;
    width: 350px;
    box-shadow: 0 5px 0 rgb(200, 200, 200);
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    box-shadow: none;
}

input[type="checkbox"]:hover {
    transform: scale(1);
}

#submit {
    margin-top: 10px;
    font-weight: 600;
    width: 300px;
    background-color: rgb(172, 200, 255);
    box-shadow: 0 5px 0 rgb(110, 130, 170);
    color: rgb(40, 50, 65);
}

h1 {
    text-align: center;
    color: rgb(172, 200, 255);
    text-shadow: 0 3px 0 rgb(110, 130, 170);
}

p, label, ul {
    color: white;
    font-size: 20px;
    margin-left: 15px;
    font-weight: 600;
}

label {
    font-style: italic;
}

.item {
    display: flex;
    margin: auto;
    margin-left: 15px;
    width: auto;
}

.receipt {
    display: flex;
    margin: auto;
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
    background-color: rgb(50, 50, 50);
    box-shadow: 0 10px 0 rgb(30, 30, 30);
    flex-direction: column;
    width: 400px;
    justify-content: center;
}

.receipt > * {
    margin: 10px;
}