
#haupttext {
    margin: 90px 20px 90px 20px;
}

.container {
  max-width: 860px;
  width: 78%;
  margin: 0px auto;
  padding: 30px;
  border: 0px solid #ccc;
//  border-radius: 5px;
//  display: flex;
//  flex-flow: row wrap;
//  justify-content: space-around;
//  padding: 0;
//  margin: 0 3%;
  list-style: none;
  background-color: #7f1a1a;
}

.container li {
    margin-bottom: 50px;
}

#flex-container {
    display: flex;
    position: absolute;
  width: 98.5%;
  // height: 100%;
  margin-top: -90px;
}

input[type="text"],
input[type="password"],
input[type="email"],
button {
  display: block;
  width: 280px;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 0px solid #ccc;
}

.login-button button {
  background-color: #ccc;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color .7s ease;
}

.login-button button:hover {
  background-color: #eee;
  color: #7f1a1a;
}

#btnClear {
    margin-bottom: 36px;
}

#cart-container button {
  background-color: #7f1a1a;
  color: white;
  border: none;
  width: 30%;
}

#cart-container button:hover {
  background-color: #cf6a6a;
}

#login-form, #registration-form, #account-form {
    width: 300px;
}

#login-button {
    padding-top: 46px;
}

#welcome {
    font-size: 24px;
    color: #7f1a1a;
}

#logout {
    font-size: 24px;
    color: #7f1a1a;
    transition: color 0.6s;
}

#navigation {
    width: 24%;
    margin: 0px 0px 0 0;
    background-color: #f1f1f1;
    height: 100%;
    display: block;
    border-right: 0px solid white;
    padding: 90px 0 0 0;
}

.cart-caption {
    color: #7f1a1a;
    right: 340px;
    margin: 0px 0 24px 0;
    font-size: 24px;
}

#navigation button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    text-align: inherit;
}

#delete-all {
    margin: 24px 0 0 0;
    display: none;
}

#checkout-btn {
    display: none;
}

#empty-cart {
    margin-bottom: 20px;
    display: block;
}

#continue-shopping {
    font: inherit;
    margin: -10px 0 24px 0;
  font-style: italic;
}

.align-right {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0 0 0;
}

#checkout-btn {
    margin-bottom: 40px;
}



@media screen and (max-width: 890px) {  
  .container {
      display: block;
  }

    #login-form, #registration-form, #account-form {
        width: 100%;
    }

    input[type="text"],
    input[type="password"],
    input[type="email"] {
      width: 97%;
    }
    
    #login-button {
        padding-top: 0px;
    }
    
    button {
        width: 160px;
    }
}