* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
    background-color: white;
    color: black;
    justify-content: center;
    padding-top: 50px;
}

.cont {
    border: 2px solid black;
    margin: auto;
    padding: 40px;
    padding-left: 60px;
    padding-right: 60px;
    background-color: white;
    width: fit-content;
    max-width: 80%;
    box-shadow: 8px 8px 0px;
    /* background-image: linear-gradient(red, orange, yellow, green, blue, purple); */
    margin-bottom: 200px;
}

cont:hover {
    animation: shine 1s infinite linear;
}

h1 {
    font-size: 45px;
    border-bottom: 3px black solid;
    margin: auto;
    margin-bottom: 20px;
    width: fit-content;
}

div {
    font-size: 20px;
    margin-bottom: 1px;
    display: block;
}

p {
    font-size: 20px;
    margin-bottom: 1px;
    display: inline;
}

button, input {
    vertical-align: middle;
}

button {
    cursor: pointer;
    border: 2px solid black;
    font-size: 16px;
    background-color: black;
    color: white;
    transition: all 0.3s ease;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 0px;
    padding-bottom: 0px;
    width: auto;
    height: 35px;
    margin-top: 2px;
}

button:hover {
    transform: scale(1.1);
}

button:active {
    background-color: white;
    color: black;
    transform: scale(1);
}

input:not([type="checkbox"]):not([type="radio"]) {
    height: 32px;
    width: 400px;
    font-size: 16px;
    border: 2px solid black;
    padding-left: 4px;
    transition: all 0.3s ease;
    margin-top: 2px;
}

input:hover {
    transform: scale(1.05);
}

input:not([type="checkbox"]):not([type="radio"]):focus {
    outline: none;
    border: 2px solid rgb(0, 0, 204);
}

input[type="checkbox"]{
    appearance: none;
    width: 24px;
    height: 24px;
    border: black 2px solid;
    transition: all 0.3s ease;
}

input[type="checkbox"]:hover {
    transform: scale(1.15);
}

input[type="checkbox"]:active {
    transform: scale(1);
}

input[type="checkbox"]:checked {
    background-color: grey;
}

input[type="radio"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid black;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    vertical-align: middle;
    transition: all 0.3s ease;
    position: relative;
}

input[type="radio"]:hover {
    transform: scale(1.15);
}

input[type="radio"]:active {
    transform: scale(1);
}

input[type="radio"]:checked::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-color: black;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

canvas {
    border: 3px solid black;
    background-color: white;
    margin: 5px;
}

::selection {
    color: red;
    background-color: grey;
}

li {
    margin-left: 20px;
    list-style-type: square;
}

select {
    height: 36px;
    width: auto;
    font-size: 20px;
    border: 2px solid black;
    padding-left: 4px;
    transition: all 0.3s ease;
    margin-top: 2px;
    cursor: pointer;
}

select:focus {
    outline: none;
}

select option {
    font-family: Arial, Helvetica, sans-serif;
    width: auto;
    font-size: 18px;
    padding: 8px;
    background-color: white;
    color: black;
    transition: all 0.3 ease;
}

select option:hover {
    background: #888;
}

select option:checked {
    background-color: black;
    color: white;
}