h1{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size:50px;
    text-align:center;
    color:rgb(47, 22, 70);
    background-color:rgb(184, 163, 204);
    border-radius: 4px;
    padding:20px;
}

footer{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size:25px;
    color:rgb(47, 22, 70);
    text-align:center;
    background-color:rgb(184, 163, 204);
    border-radius: 20px;
    padding:20px;
}

#container{
    background-color:rgb(184, 163, 204);
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size:25px;
    color:rgb(47, 22, 70);
    border: 4px solid rgb(47, 22, 70);
    border-radius: 25px;
    padding:20px;
    margin:100px;
}

#attendance{
    display:flex;
    flex-direction:column;
    gap:16px;
    width:200px;
}

input{
    width:400px;
    height:40px;
    border-radius:25px;
    font-size:20px;
    padding:10px;
    margin:4px;
}

button[type="submit"], button[type="button"]{
    background-color: rgb(184, 163, 204);
    border: 2px solid rgb(47, 22, 70);
    border-radius:25px;
    color: rgb(47, 22, 70);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin:20px;
}

button[type="submit"]:hover, button[type="button"]:hover{
    background-color:rgb(47, 22, 70);
    border:2px solid rgb(184, 163, 204);
    color:rgb(184, 163, 204)
}

input [type="text"], input [type="submit"]{
    width:30px;
    height:20px;
}

#light, #dark, #increase, #decrease{
    background-color: rgb(184, 163, 204);
    border: 2px solid rgb(47, 22, 70);
    border-radius:25px;
    color: rgb(47, 22, 70);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    align-items:center;
    font-size: 20px;
    margin:20px;
}

#container.dark-mode{
    background-color:rgb(47, 22, 70);
    color:rgb(184, 163, 204);
    border: 4px solid rgb(184, 163, 204);
}