body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}
body {
    display: flex;
    flex: 1 0 auto;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
h1 {
    font-size: 50px;
    text-align: center;
    padding: 2%;
}

td {
    padding: 10px;
}

input[type='radio'] + label {
    font-size: 20px;
    width: auto;
    padding: 5px;
    cursor: pointer;
}
input[type='checkbox'] + label {
    font-size: 20px;
    width: auto ;
    padding: 5px;
    cursor: pointer;
}

input[type='text'], input[type='reset'], input[type='button'], input[type='email'] {
    padding: 10px;
    border-radius: 5px;
    border: 2px solid blue;
}
input[type='reset'], input[type='button'] {
    width: 200px;
    font-family: "Comic Sans MS", serif;
    font-weight: bold;
    font-size: 20px;
    color: blue;
    background-color: white;
    cursor: pointer;
}

table, td, th {
    border: 1px solid gray;
    border-collapse: collapse;
}

.invisible-radio {
    opacity: 0;
    transition: opacity 0.5s ease;
    display: inline-block;
}

.invisible-radio:hover {
    opacity: 1;
}

input[type=number] {
    width: 150px;
    font-size: 25px;
    text-align: center;
    border: 2px solid blue;
    border-radius: 50px;
}

textarea {
    resize: none;
    margin: 5px;
    font-family: Papyrus, serif;
    font-size: 20px;
    border: 2px solid blue;
    border-radius: 5px;
}

input[type=date] {
    width: 150px;
    font-size: 20px;
    text-align: center;
    border: 2px solid blue;
    border-radius: 50px;
    padding: 5px;
}

input[type=color] {
    width: 150px;
    height: 50px;
    padding: 5px;
    font-size: 20px;
    text-align: center;
    border: 2px solid blue;
    border-radius: 50px;
}

input[type="file"]::file-selector-button {
    background: blue;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background: dodgerblue;
}

select {
    width: 150px;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid blue;
    cursor: pointer;
}

input[type=range] {
    width: 100%;
}