@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,500,700");

/*body {*/
/*  font-family: "Roboto", sans-serif;*/
/*  color: #222222;*/
/*  background-color: #efefef;*/
/*  background-image: radial-gradient(#999999 1px, transparent 0);*/
/*  background-size: 20px 20px;*/
/*  display: flex;*/
/*  margin: 32px 0;*/
/*}*/

.container {
  max-width: 80%;
  width: 580px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

h1 {
  font-size: 32px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 24px;
}

.item_download {
  border: 2px solid #222222;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  align-items: center;
  will-change: transform;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.item_download:hover {
  border-color: #7e3af2;
  transform: scale(1.025);
}

.item_download svg {
  width: 36px;
  height: 36px;
  transition: all 0.3s ease-in-out;
}

.item_download:hover svg {
  color: #7e3af2;
  fill: red;
}

.item_download button {
  all: unset;
  margin-left: auto;
  background-color: #7e3af2;
  padding: 12px 16px;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.item_download button:hover {
  background-color: #7126f1;
}

.item_download .filedata {
  display: flex;
  gap: 4px;
  font-size: 12px;
  margin-top: 8px;
  color: #888888;
}