@charset "UTF-8";

body{
    background-color: rgb(245, 245, 245);
}
caption{
    font-size: 5px;
    font-weight: bolder;
    padding: 15px;
}
table{
    border: 2px solid white;
    border-collapse: collapse;
    margin: auto;
    margin-bottom: 5px;
    height: 50px;
    width: 200px;
}
th,td{
    border: 2px solid white;
    padding: 15px;
    font-size: medium;
}
tr{
    background-color: rgb(255, 255, 255);
}
tr:nth-child(even){
    background-color: lightgrey;
}
th{
    color: white;
    background-color: rgb(25, 0, 255);
}
.container{
    max-width: 600px;
    margin: 0 auto;
    background-color: antiquewhite;
    padding: 20px;
    border-radius: 20px;
}
h1{
    text-align: center;
    color: black;
}
form{
    display: flex;
    flex-direction: column;
}
label{
    margin-top: 15px;
    font-weight: bolder;
}
input,select,textarea{
    margin-top: 5px;
    padding: 15px;
    background-color: whitesmoke;
    color: black;
    font-size: 1em;
    border: none;
    border-radius: 15px;
}
button{
    font-size: 20px;
    background-color: aqua;
    border: none;
    border-radius: 20px;
}
button:hover{
    background-color: blue;
}