@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Noto+Sans+Georgian:wght@100..900&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-image: url("./img/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  min-height: 100vh;
  font-family: "Noto Sans Georgian", sans-serif;
  display: flex;
}

main {
  background-color: rgba(0, 0, 0, 0.56);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100vw;
  min-height: 100vh;
}

section {
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: end;
  margin: 5px;
}

article {
  background-color: rgba(0, 0, 0, 0.56);
  padding: 25px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  color: #e946b7;
  border-radius: 3px;
  font-size: 2vw;
}

.logo {
  width: 250px;
}

article h1 {
  font-size: 4vw;
}

article h3 {
  color: #9800f0;
}

article a {
  color: #e946b7;
  text-decoration: none;
}

article h4 {
  user-select: all;
  -moz-user-select: all;
  -webkit-user-select: all;
}

footer {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: end;
}

footer img {
  width: 200px;
}

@media screen and (max-width: 1024px) {
  article {
    width: 90%;
    font-size: 7vw;
    padding: 10vw;
  }
  article h1 {
    font-size: 10vw;
  }
  article a {
    font-size: 4vw;
  }
}
