html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #121212; /* fallback for old browsers */
  overflow-x: hidden;

  /*height: 100%;*/

  /* code to make all text unselectable */
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* Disables selector ring */
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus {
  outline: none;
}

/* ########################################################## */

h1 {
  color: white;
  font-size: 35px;
  font-weight: 800;
}

.flex-container {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subtitle {
  font-size: 12px;
  color: rgba(177, 177, 177, 0.3);
}

input {
  border: none;
  border-bottom: solid rgb(143, 143, 143) 1px;
  margin-bottom: 30px;
  background: none;
  /*color: rgba(255, 255, 255, 0.555);*/
  height: 35px;
  width: 300px;
}

input, select, textarea{
    color: white;
}

textarea:focus, input:focus {
    color: white;
}

.submit-btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  box-shadow: 2px 2px 7px #ffa50070;
  background: #ffa500;
  color: rgba(255, 255, 255, 0.8);
  width: 80px;
  transition: all 1s;
}

.submit-btn:hover {
  color: rgb(255, 255, 255);
  box-shadow: none;
}