h1 {
  font-size: 4vh;
  color: rgb(255,255,255);
  margin: 0;
  padding: 0;
} 

html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  display: grid;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  grid-template-rows: 1fr 10vh;
  gap: 2vh;
  overflow: hidden;
  
}

#ui {
  display: grid;
  height: 100%;
  width: 98%;
  background-color: rgb(0,0,0);
  border-radius: 30px;
  justify-self: center;
} 

#ui .content {
  height: 90%;
  width: 95%;
  display: grid;
  flex-direction: column;
  background-color: rgb(0,0,0);
  justify-self: center;
  align-self: center;
  grid-auto-rows: repeat( 3,1fr );
  gap: 2vh;
}

/* Form */

#ui .content input {
  display: grid;
  height: 2vh;
  border: solid 2px rgb(255,255,255);
  border-radius: 60px;
  user-select: hidden;
  color: rgb(255,255,255);
  background-color: transparent;
  padding: 8vw;
}

button {
  display: grid;
  height: 10vh;
  width: 40vw;
  border-radius: 60px;
  user-select: none;
  background-color: rgb(255,255,255);
  color: rgb(0,0,0);
  align-self: center;
  justify-self: center;
  vertical-align: center;
  text-align: center;
}

a {
  height: 30%;
  width: fit-content;
  font-size: 1em;
  color: rgb(0,0,0);
  text-decoration: none;
  border-bottom: solid 2px rgb(255,255,0);
  text-align: center;
  align-self: center;
  justify-self: center;
}

/* Nav */

#navbar {
  display: grid;
  height: 100%;
  width: 98%;
  background-color: rgb(0,0,0);
  border-radius: 30px;
  justify-self: center;
} 

#navbar .content {
 height: 90%;
  width: 95%;
  display: grid;
  background-color: transparent;
  justify-self: center;
  color: rgb(255,255,255);
  align-self: center;
  grid-template-columns: 1fr 1fr;
}

#navbar .content a {
  color: rgb(255,255,255);
  justify-self: center;
  align-self: center;
}