@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #121212;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.main {
  width: 100vw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

a {
  display: block;
  color: #d6d2d2;
  transition: color 0.3s ease;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-top: 24px;
}

a:hover {
  color: #257bd0;
}
.title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.logo-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.logo-box {
  width: 20px;
  height: 20px;
  background-color: #fff;
  margin-bottom: 4px;
  border-radius: 2px;
}

.logo-box-1 {
  background-color: #257bd0;
}

.logo-box-2 {
  background-color: #134c85;
}

.logo-box-3 {
  background-color: #5e93c8;
}
