body {
  background-color: #570915;
  background-image: linear-gradient(to right, #460505, #79090b);
  /*background-image: linear-gradient(to right, #360a20, #79090b);*/
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: floralwhite;
  padding: 10px 27px 10px 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.sub-header {
  padding: 10px 27px 10px 12px;
}

.head {
  /*margin: 10px;*/
  color: #79090b;
  font-family: Consolas, monospace;
  font-weight: bolder;
  font-size: 28px;
  text-align: left;
  padding: 0 16px;
  display: flex;
  column-gap: 12px;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
}

.socials-container {
  /*margin: 0 24px;*/
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.socials {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.socials:hover {
  border-radius: 30px;
  box-shadow: 0 0 14px 4px rgba(121, 9, 11, 0.2);
}

.grid {
  margin: 77px 17px 0 17px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
  row-gap: 15px;
}

.file {
  background-color: rgb(255, 255, 255);
  display: flex;
  padding: 10px 14px;
  border-radius: 50px;
  align-items: center;
  transition: transform 0.5s;
  cursor: pointer;
}
.file:hover {
  transform: scale(1.03, 1.03);
  box-shadow: 0 0 14px 4px rgba(255, 255, 255, 0.2);
}

.site-icon {
  width: 30px;
}

.folder-icon {
  width: 26px;
  margin: 0 3px;
}

.file-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.name {
  border: none;
  background-color: transparent;
  font-family: 'Noto Sans Mono', monospace;
  font-size: 18px;
  cursor: pointer;
}

.date {
  color: rgb(87, 87, 87);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
}
