* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: rgb(19, 19, 19);
  text-transform: uppercase;
  font-weight: bold;
  transition: 300ms;
}

main {
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.h1-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.h1 {
  font-family: "Russo One", sans-serif;
  color: white;
  font-size: 4rem;
}

.h1-io {
  font-family: "Russo One", sans-serif;
  font-size: 4rem;
  color: transparent; /* делает заливку прозрачной */
  -webkit-text-stroke: 0.5px #ffffff; /* ширина контура и цвет */
  text-stroke: 0.5px #ffffff;
}

p {
  font-family: "Inter", serif;
  color: rgb(185, 185, 185);
  font-size: 1.25rem;
  text-align: center;
}

a {
  font-family: "Inter", serif;
  color: rgb(185, 185, 185);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  border-radius: 0.5rem;
}
