@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: #f7f0e9;
  transition: .6s;
}
h1 {
  font-size: 5em;
  color: #3d3935;
}
h2 {
  font-size: 5em;
  color: #3d3935;
}
h3 {
  font-size: 5em;
  color: #3d3935;
}
h6 {
  font-size: 5em;
  color: #3d3935;
}
#container {
  width: 30%;
  /*height: 100vh;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: right;
  position: absolute;
  padding-left: 80%;
  padding-top: 20px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  display: none;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 34px;
  transition: .4s;
}
.slider:before {
  content: "";
  position: absolute;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: .4s;
}
input:checked + .slider {
  background: #b892ff;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.dark-mode {
  background: #0b0a14;
}
.dark-mode h1 {
  color: #f7f0e9;
}
.dark-mode h2 {
  color: #f7f0e9;
}
.dark-mode h3 {
  color: #f7f0e9;
}
.dark-mode h6 {
  color: #f7f0e9;
}

input[type=submit], input[type=reset] {
  background-color: red;
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  height: 250px;
  width: 500px;
  font-size: 100;
  font-weight: bolder;
}
input[type=text] {
  border: 5px solid red;
  border-radius: 10px;
  height: 100px;
  width: 350px;
  font-size: 40;
  padding-left: 15px;
  padding-right: 15px;
}
select {
  width: 100%;
  padding: 16px 20px;
  border: 5px solid red;
  font-size: 40;
  border-radius: 10px;
  background-color: #f1f1f1;
}
textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
}