* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Montserrat', 'LGsmart', sans-serif;
   /* border: 1px solid red; */
}

.welcome {
   width: 100%;
}

.header {
   width: 100%;
   margin: 1vh 0;
}

.header h1 {
   text-align: center;
   font-family: 'Grapple BRK', sans-serif;
   font-size: 10vh;
   font-weight: 300;
   color: #cc0066;
}

.header h1 span {
   font-family: 'Montserrat', 'LGsmart', sans-serif;
   font-size: 9vh;
   font-weight: 900;
}

.hero {
   height: 65vh;
   display: flex;
   justify-content: center;

}

#hero-video {
   object-fit: cover;
   cursor: pointer;
   /* display: block; */
   /* display: none; */
}

.login-container,
.register-container {
   width: 60%;
   height: 65vh;
   margin: auto;
   padding-top: 8vh;
   text-align: center;
   /* display: block;    */
   /* display: none; */
}

.login-container p,
.register-container p {
   margin: 4vh auto;
}

.message {
   color: red;
   font-weight: bold;
}

.login-container a,
.register-container a {
   text-decoration: none;
   color: #000;cd a
   cursor: pointer;
}

.login-container a:hover,
.register-container a:hover {
   text-decoration: underline;
}

.input-form {
   width: 50%;
   margin: auto;
   display: flex;
}

.input-area {
   flex-grow: 1;
}

.input-box input {
   width: 100%;
   font-size: 20px;
   text-align: center;
   margin: 20px 0;
   padding: 10px 10px;
}

#login-btn,
#register-btn {
   flex-grow: 1;
   display: flex;
   align-items: center;
   justify-content: flex-end;
}

#login-btn button,
#register-btn button {
   cursor: pointer;
   font-size: 20px;
   padding: 30px;
}

.footer {
   width: 84%;
   margin: auto;
   margin-top: 3vh;
   display: flex;
   align-items: center;
   justify-content: space-evenly;
}

.footer h1 {
   flex-grow: 1;
   text-align: center;
}

.ace {
   flex-grow: 3;
   display: flex;
   align-items: center;
   justify-content: space-evenly;
}

.ace-theme {
   display: flex;
   align-items: center;
}

.ace-theme div {
   display: flex;
   align-items: center;
}

.ace img {
   height: 10vh;
   margin-right: 10px;
}

.ace h2 {
   margin-right: 20px;
}

@media only screen and (max-width : 1400px) {
   .input-form {
      width: 70%;
   }

   .footer {
      width: 100%;
   }
}

@media only screen and (max-width : 1200px) {
   .header h1 {
      font-size: 8vh;
   }

   .header h1 span {
      font-size: 7vh;
   }

   .hero {
      height: 60vh;
   }

   .login-container,
   .register-container {
      width: 70%;
      height: 60vh;
      padding-top: 7vh;
   }

   .footer {
      display: block;
      width: 86%;
      margin: auto;
      text-align: center;
   }

   .footer h1 {
      margin: 2vh 0 1vh 0;
   }

   .ace {
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-evenly;
   }

   .ace img {
      height: 7vh;
   }
}

@media only screen and (max-width : 992px) {
   .header h1 {
      font-size: 7vh;
   }

   .header h1 span {
      font-size: 6vh;
   }

   .hero {
      height: 55vh;
   }

   .login-container,
   .register-container {
      width: 80%;
      height: 55vh;
   }

   .input-form {
      width: 80%;
   }
}

@media only screen and (max-width : 768px) {
   .header h1 {
      font-size: 6vh;
   }

   .header h1 span {
      font-size: 5vh;
   }

   .hero {
      height: 50vh;
   }

   .login-container,
   .register-container {
      width: 100%;
      height: 50vh;
      padding-top: 4vh;
   }

   .input-form {
      width: 90%;
   }

   .ace {
      display: block;
   }

   .ace-theme {
      display: block;
      margin: 1vh 0;
   }

   .ace-theme div {
      display: flex;
      align-items: center;
      justify-content: center;
   }

   .ace-theme img {
      height: 6vh;
   }
}

@media only screen and (max-width : 576px) {
   .header h1 {
      font-size: 5vh;
   }

   .header h1 span {
      font-size: 4vh;
   }

   .hero {
      height: 40vh;
   }

   .login-container,
   .register-container {
      height: 40vh;
      padding-top: 0;
   }

   .input-form {
      width: 98%;
   }

   .login-container p,
   .register-container p {
      margin: 3vh auto;
   }

   .input-box input {
      margin: 10px 0;
   }

   .footer h1 {
      font-size: 25px;
   }

   .ace img {
      height: 5vh;
   }

   .ace h2 {
      font-size: 20px;
   }
}
