*{
    margin: 0;
    padding: 0;
    font-family: cursive, sans-serif;
}
html {
	color-scheme: dark light;
}

:root:has(#theme [value="☀️"]:checked) {
	color-scheme: light;
	--base: #cfcfcf;
	--text: #212121;
}

:root:has(#theme [value="🌑"]:checked) {
	color-scheme: dark;
	--base: #212121;
	--text: #cfcfcf;
	--grayBox: #343635;
}

.selector {
	text-align: end;
	padding: 10px;
}

#container{
    margin: 15% auto;
    border-radius: 10px;
    border: 1px solid var(--text);
    width: 500px;
    height: 20%;
    padding: 100px 10px;
    box-shadow: 2px 3px 5px var(--text);
}

h1{
    font: .5rem;
    text-align: center;
}

form{
    text-align: center;
}

#myInput{
    margin: 15px 0;
    width: 50%;
    text-align: center;
    font-size: 1.5em;
    padding: 2px 2px;
    border-radius: 10px;
}

label{
    font-size: 1em;
}

button{
      margin: 15px;
      padding: 10px 15px;
      font-size: 1em;
      border-radius: 10px;
      cursor: pointer;
      background-color: rgba(237, 0, 0, 0.935);
      color:white;
}

p{
    font-size: 1.8em;
    color:rgba(205, 102, 18, 0.899);
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
}

@media (max-width:768px){
    #container{
        width:85%;
    }
}