body,
html {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

img {
  display: block;
  max-width: 100%;
}
.icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(191deg) brightness(104%) contrast(101%);
}
.container {
  display: grid;
  grid-template-columns: 1fr 6fr;
  background-color: blueviolet;
  height: 100%;
}
.account {
  display: flex;
  gap: 20px;
}
.account .names p {
  margin: 0;
  font-weight: 600;
}

.account .names p:last-child{
    font-size: 25px;
}
.account .names {
  align-self: center;
}
.sidebar {
  grid-row: 1 / 3;
  background-color: #64748b;
  display: grid;
  grid-template-rows: 1fr 4fr 4fr;
  font-size: 20px;
  font-weight: 500;
  color: white;
}
.sidebar img {
  height: 1.5em;
}

.sidebar ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.header {
  grid-column: 2 / 3;
  background-color: rgb(255, 255, 255);
  display: grid;
  grid-template: 1fr 1fr /2fr 1fr;
  padding-left: 50px;
  padding: 1% 50px;
  gap: 20px;
  z-index: 10;
  box-shadow: 1px 4px 4px #64748b;
}
.header img {
  height: 30px;
  width: auto;
}

.header input {
  height: 1.5em;
  width: 80%;
  background-color: #e2e8f0;
  border-radius: 15px;
  padding: 5px;
  border: none;
}

.sidebar .name {
  display: flex;
  gap: 10px;
  padding-left: 20px;
  padding-top: 20px;
}

.sidebar ul {
  list-style: none;
  display: grid;
  grid-template-rows: repeat(auto-fit, 1fr);
}

.name img {
  height: 3em;
}
.searchbar {
  display: flex;
  gap: 10px;
  align-items: center;
}
.logo {
  height: 4em;
  width: 4em;
  background-color: aqua;
  border-radius: 50%;
  background-image: url("img/spider.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.notification .logo {
  height: 45px;
  width: 45px;
  background-color: aqua;
  border-radius: 50%;
  background-image: url("img/spider.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.notification {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  font-weight: 600;
}

.header .buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  font-size: 17px;
  font-style: bold;
  align-items: center;
}

.buttons button {
  font-size: 15px;
  height: 2.5em;
  width: 100px;
  text-align: center;
  border-radius: 20px;
  background-color: #475569;
  border: none;
  color: white;
}
.content {
  display: grid;
  grid-template-columns: 4fr 1fr;
  background-color: #e2e8f0;
  font-size: 17px;  
}

.project {
  padding-left: 20px;
  padding-right: 20px;
}
.main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.card {
  background-color: rgb(255, 255, 255);
  padding: 20px;
  height: 200px;
  border-radius: 10px;
  display: grid;
  grid-template-rows: 3fr 1fr;
  box-shadow:2px 2px 2px #64748b,
            inset 0.4em -0.4em #64748b;
}

.tools button img {
  height: 2em;
}
.tools button {
  background: none;
  border: none;
}
.tools {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}
.card p {
  margin: 0;
}

.side-content {
  padding-right: 20px;
  
}

.announcement {
  border: 1px solid black;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 10px;
  font-size: 15px;
  box-shadow: 2px 4px 4px #64748b;
}

.announcement div h4 {
  margin: 0;
}

.trending {
  border: 1px solid rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  padding: 15px;
  background-color: rgb(255, 255, 255);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  box-shadow: 2px 4px 4px #64748b;
}

.trending .handle {
  display: flex;
  align-items: center;
  gap: 0.8em;
}

.trending .handle .logo {
  height: 45px;
  width: 45px;
}
.announcement div:nth-child(2) {
  border-bottom: 1px solid black;
  border-top: 1px solid black;
  padding-top: 15px;
  padding-bottom: 15px;
}

.announcement div {
  padding: 5px;
}

