* {
  box-sizing: border-box;
}

:root {
  --background-primary-color: #ffdae3;
  --background-stroke-color: #ffc1cc;
  --text-primary-color: black;
  --text-accent-color: #a34750;
  --shadow-primary-color: black;
  --block-stroke-color: black;
}

body {
  display: flex;
  top: 0;
  position: absolute;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Montserrat Alternates", sans-serif;
  min-height: 100vh;

  background: linear-gradient(var(--background-stroke-color), transparent 1px),
    linear-gradient(90deg, var(--background-stroke-color), transparent 1px);
  background-size: 20px 20px;
  background-position: center center;
  font-size: 16px;
}

.headline {
  font-size: 20px;
}

.text--bold {
  font-weight: 600;
}

.text--semibold {
  font-weight: 600;
}

.text--center {
  text-align: center;
}

.container {
  position: relative;
  z-index: 1;
  padding: 24px;
  margin: auto;
}

.block {
  border: 4px solid var(--block-stroke-color);
  background-color: white;
  box-shadow: 4px 4px 0 0 var(--shadow-primary-color);
  border-radius: 16px;
}

.logo-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 165px;
  width: 165px;
  background-color: var(--background-primary-color);
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.header .header__username {
  margin-top: 24px;
  color: var(--text-accent-color);
}

.header .header__description {
  padding: 24px;
}

.button {
  padding: 6px 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out, padding 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
}

.button--donate {
  background-color: #fffacd;
}

.button:hover:not(:disabled):not(:active) {
  box-shadow: 3px 3px 0 0 var(--shadow-primary-color);
  transform: translate(1px, 1px);
}

.button:active:not(:disabled) {
  box-shadow: 0px 0px 0 0 var(--shadow-primary-color);
  transform: translate(4px, 4px);
}

.button .button__icon {
  display: flex;
  align-items: center;
}

.button .button__text {
  margin: auto;
  color: var(--text-primary-color);
}

.links {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

@media screen and (width > 600px) {
  .header {
    flex-direction: row;
  }

  .links {
    grid-template-columns: 1fr 1fr;
  }

  .container {
    max-width: 700px;
  }
}
