html, body {
    margin: 0;
    padding: 5px;
    font-family: 'Roboto', sans-serif;
    background: #e6e6e6;  
  }
  
  /* Header */
  
    #header--container {
      background: darkblue; 
      padding: 20px 10px; 
      margin-bottom: 30px; 
      box-shadow: 0px 2.98256px 7.4564px rgba(0, 0, 0, 0.2);
      text-align: center; 
    }
    
    
    #header--title {
      color: whitesmoke; 
      font-family:'Ubuntu', sans-serif;
    }

    /* Connectors */


  #sub-connect-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px; 
  }

  #connection-message{
    margin: 10px;
  }

  #connect-btn {
    background: maroon;
    color: white;
    padding: 10px 20px; 
    font-size: 20px; 
    border: none;
    border-radius: 7px; 
    margin-bottom: 5px; 
    cursor: pointer; 
  }

  #connect-btn:active {
    box-shadow: inset 10px 10px 10px -3px rgba(0, 0, 0, 0.7);
    background: lightcoral; 
  }

  
  /* Minter */
  
  #main--container {
    display: flex;
    flex-direction: column;   
    background: whitesmoke;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    max-width: 500px; 
    margin: 60px auto; 
    margin-top: 10px; 
    padding: 10px; 
    border-radius: 10px;
  }
  
  #form-wrapper {
    display: flex;
    flex-direction: column; 
    margin: 20px auto;   
  }
  
  
  label {
    font-weight: bold; 
    align-self: flex-start; 
    margin-top: 15px
  }
  
  input {
    width: 245px;
    margin-bottom: 0px;
    margin-top: 5px;  
    padding: 5px 5px;
  }
  
  #mint-btn {
    align-self: center;
    background-color: darkblue;
    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 30px; 
    border-radius: 12px; 
    cursor: pointer;
  }
  
  #mint-btn:focus {
    outline: none;
  }
  
  #mint-btn:active {
    box-shadow: inset 5px 5px 10px -3px rgba(0, 0, 0, 0.7);
    background: lightcoral; 
  }
  
  