@import url('https://fonts.googleapis.com/css2?family=Lexend+Exa:wght@100..900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body {
    background-color: #212630;
}

.pagecontent {
    width: 90%;
    background-color: rgba(23,27,35,220);
    border: 0.5px solid #555;
    padding: 20px 60px;
    margin-top: 60px;
    border-radius: 50px;
    color: white;
    font-family: "Quicksand", sans-serif;
}

.headers {
    text-align: center;
}

.dashbar {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30%;
    margin-top: 20px;
    background-color: rgba(23,27,35,220);
    border: 0.5px solid #555;
    padding: 20px 60px;
    border-radius: 50px;
}

.dashitems {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashitems label {
    color: white;
}

.dashitems button {
    padding: 5px 15px;
    border: none;
    border-radius: 10px;
    background-color: transparent;
    color: white;
    cursor: pointer;
    font-family: "Quicksand", sans-serif;
    font-style: normal;
    transition: 0.3s;
}

.dashitems button:hover {
    padding: 5px 15px;
    border: none;
    border-radius: 10px;
    background-color: rgba(80, 59, 141, 0.4);
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-family: "Quicksand", sans-serif;
    font-style: normal;
}