
.bodyBackground {
  background-color: #333;
  color:#fff;
}
.mainColour {
    color: #20548d;
  }

    body, h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    }
    
    h1, h2, h3, h4, h5, h6 {
        margin: 5px 0;
    }

  .mainButton {
    background-color: #5f5d5d;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }

  .mainButton:hover {
    background-color: #0d65c4;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }

  .menu-button {
    width: 240px;
    height: 140px;
    border-radius: 6%;
    margin: 10px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0px 3px 10px #535353;
}

.menu-button:hover {
    background-color: #0056b3;
}

.cat-button {
  width: 185px;
  height: 75px;
  border-radius: 6%;
  margin: 10px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

input[type="text"], input[type="number"], textarea, select {
  width: 100%;
  padding: 10px;
  /*margin-bottom: 10px;*/
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #2d2c2c;
  color: #c9c7c7;
}
input[type="submit"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}


#back-button {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

#logout-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

#alert-box {
    background-color: #467c43;
    color: white;
    border: 2px solid #333;
    padding: 40px;
    text-align: center;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
