:root {
    color-scheme: light dark;
}

body {
    user-select: none;
    font-family: Arial, Helvetica, sans-serif;
    
}
section {
    margin-left: 15%;
    margin-top: 5%;
}
form {
    padding: 25px;
    border: 1px solid #ccc;
    width: 500px;
    border-radius: 15px;

}
h1 {
    font-size: 4rem;
    letter-spacing: -4px;
}
.button {
    background-color: #04AA6D;
    border: none;
    color: white;
    border-radius: 15px;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
  }

.colorchooser {
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 25px;
    cursor: pointer;
    background-color: transparent;
}
label {
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 10px;
}

select {
    padding: 10px;
    border-radius: 15px;
}

.time {
    padding: 10px;
    border-radius: 15px;
    border-style: none;
    outline: 1px solid #767676;
}


@media (prefers-color-scheme: dark) {
    body {
        background-color: #111114;
        color: white;
        user-select: none;
        font-family: Arial, Helvetica, sans-serif;
      }
      section {
        margin-left: 15%;
        margin-top: 5%;
      }
      form {
        border: 2px solid #ffffff65;
        background-color: #303034;
        width: 50%;
        border-radius: 15px;
      }
    }