.main {
  background-color: #282c34;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: aliceblue;
}

.profile-pic {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.borzoi {
  width: 90px;
  height: 90px;
}

p,
a,
li {
  font-size: medium;
  text-decoration: none;
}

.list-item {
  color: aliceblue;
  padding: 0.5em;
}

.line {
  margin-top: -0.7em;
  margin-bottom: 1em;
  color: darkorange;
}

.download-button {
  border: none;
  background-color: rgb(102, 102, 255);
  padding: 15px 32px;
  margin: 4px 2px;
  text-align: center;
  border-radius: 12px;
  width: auto;
  height: auto;
  transition-duration: 0.4s;
  cursor: pointer;
  color: aliceblue;
}
.download-button p
{
  color: aliceblue;
}
.download-button:hover,
.download-button:active {
  box-shadow: #282c34;
  padding: 1em;
  background: rgba(153, 153, 255, 0.514);
}

.content-box {
  padding: 1em;
  font-size: 1.5em;
  width: 100%;
  max-width: 30em;
  min-width: 15em;
  box-sizing: border-box;
}
@media (max-width: 800px) {
  .content-box {
    width: fit-content;
    box-sizing: border-box;
    width: 100%;
  }
}
