:root {
  --hot-pink-color: #ff007f;
  --electric-purple-color: #8a2be2;
  --blood-red-color: #ff3b30;
  --cyan-color: #00ffff;
  background-color: rgb(33, 33, 33);
}

html {
  touch-action: manipulation;
  color: rgb(0, 0, 0);
  user-select: none;
  background: url("img/caro.svg");
  background-size: 512px;
}

body {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  padding: 0;
  margin: 0;
}

img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.content {
  font-size: 14px;
  line-height: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 12px;
  padding: 4px;
  box-sizing: border-box;
  background: #000000;
  background: linear-gradient(
    153deg,
    rgba(8, 8, 8, 1) 0%,
    rgba(32, 32, 32, 1) 100%
  );
  color: white;
}

@media (min-width: 800px) {
  .content {
    font-size: 18px;
    line-height: 30px;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
    margin-bottom: 8px;
  }
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.col {
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  width: 75%;
}

@media (min-width: 800px) {
  .col {
    display: flex;
    flex-basis: 100%;
    flex: 1;
    width: 100%;
  }
}

a {
  color: var(--hot-pink-color);
  text-decoration: none;
}

p {
  margin: 5px;
}

.title {
  font-size: 32px;
  line-height: 36px;
  margin-top: 10px;
  margin-bottom: 4px;
  font-weight: bold;
}

@media (min-width: 800px) {
  .title {
    font-size: 56px;
    margin-bottom: 10px;
  }
}

.subtitle {
  font-size: 18px;
  line-height: 36px;
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: 3px;
  font-weight: bold;
}

@media (min-width: 800px) {
  .subtitle {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.footer {
  padding: 10px 0;
  background-color: rgb(42, 42, 42);
  color: white;
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 22px;
}

@media (min-width: 800px) {
  .footer {
    font-size: 16px;
    line-height: 28px;
  }
}

.footer a {
  color: white;
}

.coffee-btn {
  transition: transform 0.33s ease;
}

.coffee-btn:hover {
  transform: scale(1.1);
}

.lazy-img {
}
