@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
  }
  
  a {
    color: white;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: sticky;
    z-index: 100;
    top: 0;
  
    background-color: black;
    border-bottom: 1px solid white;
    padding: 1rem;
    font-size: 1rem;
  }
  
  nav .brand {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  nav .nav-items a {
    margin: 0 1rem;
  }

.container{
    padding: 40px;
}

.inputs{
    display: flex;
    flex-flow: column ;
    gap: 10px;
}
.inputs input{
    height: 40px;
    padding: 10px;
}

button{
    margin-top: 10px;
    color: white;
    background-color: black;
    width: 150px;
    height: 40px;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }

.red{
  color:red;
  font-weight: 600;
}

.green{
  color: rgb(8, 113, 8);
  font-weight: 600;
}

#message{
  display: none;
}
