@charset "utf-8";
textarea {
    width: 80vw;
}


@media screen and (max-width: 480px) {
  input[type="submit"] {
    font-size: 1.5em;
    padding: 10px 20px;
  }
	
	form {
    width: 100%;
    max-width: none;
  }
  table {
    width: 100%;
    max-width: none;
	border-collapse: collapse;
  }
}

form {
    width: auto;
    max-width: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*border: thin solid;*/
    justify-content: center;
	margin-bottom: 20px;
        }

label {
    display: block;
    width: auto; /* adjust as needed */
    font-weight: bold;
}body {
  font-family: Arial, sans-serif;
}
h1 {
  text-align: center;
	}
h2 {
  text-align: center;
}
input, textarea, label {
    margin-top: 10px;
    margin-bottom: 10px;
}

/*input[type="submit"] {
			margin-top: 10px;
		}*/
.centered {
margin: 0 auto;
}

.rounded {
border-radius: 10px;
}
table {
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  margin: auto;
  width: 80%;
  max-width: 800px;
}

th, td {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: left;
}

th {
	background-color: #4CAF50;
	color: white;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button {
    margin: 10px;
    padding: 10px;
    background-color: blue;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 40px;
    cursor: pointer;
}
body {
 	background: rgb(203,227,232);
	background: radial-gradient(circle, rgba(203,227,232,1) 2%, rgba(181,213,215,1) 36%, rgba(153,186,219,1) 76%);
  	background-size: cover;
  	background-position: center center;
}
select {
		width: 80%;
		height: 40px;
		font-size: 16px;
	}
