body{
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f0f0;}
/* Set a base font size */
html {font-size: 16px;}
/* Use rem units for other elements */
h1 {font-size: 2rem; /* 32px if base is 16px */}
p {font-size: 1rem; /* 16px if base is 16px */}
.container{
height: auto;
width: 35%;
margin: 0 auto;
padding: 20px;
margin-bottom: 15%;
background-color: rgb(255, 255, 255);
border-radius:15px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.19);}
.hidden{display: none;}
.container h1 {
font-size: 400%;
margin-top: 0;
font-weight: bold;
font-family: Georgia;
margin-bottom: 20px;
text-align: center;
color:rgb(126, 0, 78);}
form{display: flex;
flex-direction: column;
align-items: center;}
label{margin-top: 10px;}
input {
height:2.5rem;
font-size:2rem;
width: 50%;
margin-top: 5px;
padding: 5px;
border: 1px solid #ccc; 
border-radius: 5px;
text-align:center;}
button{
font-size:2rem;
text-align:center;
width: 50%;
padding: 5px;
border: 1px solid #ccc; 
margin-top: 2%;
background-color:rgb(126, 0, 78);
color:rgb(255, 255, 255);
border-radius:5px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);}
button:hover{
background-color:rgb(255, 255, 255);
color:rgb(0, 0, 0);
cursor:pointer;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);}
@media(max-width: 600px){
.container{
width: 75%;
height: 45%;}
form input{width:80%;}
.container h1 {font-size: 300%;
padding: 0px 10px 40px 10px;}}
/* SMALLER SCREENS */
@media(max-width: 768px){
body{flex-direction: column;}}