body {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px var(--padding);
}

@media screen and (max-width: 1000px) {
  :root {
    --padding: 8px;
  }
}

@media screen and (max-width: 666px) {
  :root {
    --padding: 0px;
  }
}

@media screen and (max-width: 650px) {
  body {
    justify-content: start;
    align-items: start;
  }
}

body main {
  min-width: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  grid-template-areas:
    "profile profile"
    ". skills"
    ". skills"
    ". ."
    "other other"

}

body main>* {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 8px 16px;
}

body main>* ul {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex-grow: 1;
}

body main>* h1 {
  margin-bottom: 8px;
}

body main .profile {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  grid-area: profile;
}

body main .profile .donate {
  position: absolute;
  left: 8px;
  top: 8px;
}

body main .profile .donate button {
  cursor: pointer;
  border: 2px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  background-color: transparent;
}

body main .profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: avatar 5s infinite linear;
}

@keyframes avatar {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

body main .profile .buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

body main .profile .buttons button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background-color: var(--background-hl);
  outline: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

body main .profile .buttons .inline {
  display: flex;
  gap: 8px;
}

body main .profile .buttons .blog button {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 16px;
}

body main .skills {
  display: flex;
  flex-direction: column;
  grid-area: skills;
}

body main .exp .buttons {
  display: flex;
  gap: 16px;
}

body main .exp button {
  flex: 1;
  background-color: var(--background-hl);
  outline: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
}

body main .other {
  grid-area: other;
}

body .try-linux {
  position: fixed;
  width: 600px;
  background-color: var(--background-hl);
  gap: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 8px 16px;
}

body .try-linux img {
  height: 64px;
}

body .try-linux p b {
  font-size: 18px;
  margin-bottom: 8px;
}
