html,body{
  width:100%;
  height:950px;
}
body{
  background:#0E0E12;
  font-family: Times New Roman;
  color:#fff;
}

#container{
  margin-top: 20px;
  height:800px;
  width:95%;
  background: #1C1C24;
  border-radius: 10px;
  border: 2px solid #4ECCA3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  place-self:center;
}
#container h1{
  font-size:150px;
  margin-bottom: 0px;
}
#container h2{
  margin-top: 0px;
  
  font-size: 100px;
  margin-bottom: 10px;
}
#container input{
  font-size: 25px;
  width: 90%;
  height:50px;
  border: 2px solid #4ECCA3;
  background: #0E0E12;
  color: #F1F1F1;
  outline: none;
  border-radius: 8px;
  text-align: center;
}
#container p{
  color:#FF1744;
  font-size:20px;
}
#navbar button{
  background-color: #1C1C24;
  border: none;
  position:relative;
  top:5px;
  left:120px;
}
#container button{
  background: #0E0E12;
  font-size:20px;
  height:50px;
  width:100px;
  color:white;
  font-family: Times New Roman;
  border: 2px solid #4ECCA3;
  border-radius: 10px;
}
#navbar {
  background-color: #1C1C24;
  display: flex;
  height:60px;
  width:80%;
  place-self:center;
  justify-content: center;
  gap: 30px;
  border: 2px solid #4ECCA3;
}
#navbar a {
  color: #E6EDF3;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
#navbar:hover{
  border: 2px solid #00FFC6;
}
#navbar a:hover {
  color: #4ECCA3;
}
#container:hover,#container input:hover,#container button:hover{
  border: 2px solid #00FFC6;
}
.light {
  background-color: #fff;
  color: #000;
}

.light #navbar {
  background-color: #f5f5f5;
  border: 2px solid orange;
}
.light #navbar button{
  background-color: #f5f5f5;
}
.light #navbar a {
  color: #000;
}

.light #container {
  background-color: #fff;
  border: 2px solid orange;
}
.light h2{
  color:#000;
}
.light #container input {
  background: #fff;
  color: #000;
  border: 2px solid orange;
}

.light #container button {
  background-color: #f5f5f5;
  color: #000;
  border: 2px solid orange;
}

.dark {
  background-color: #0E0E12;
  color: #fff;
}

@media screen and (max-width:600px){
  html,body{
    height:530px;
  }
  #container{
    height:500px;
    width:90%;
  }
  #container h1{
    font-size: 90px;
  }
  #container h2{
    font-size:70px;
  }
  #container input{
    width:95%;
  }
  #navbar {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    width:80%;
    height:150px;
    place-self:center;
  }
}