* {
  margin: 0;
  padding: 0;
}

html,
body {
  background-color: #121212;
  color: #fff;
  font-family: 'Inter', sans-serif;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  display: flex;
}

h1 {
  font-size: 2em;
  margin-top: 1em;
  font-weight: 600;
}

h2 {
  font-size: 1em;
  font-weight: normal;
  color: #fff;
}

a {
  text-decoration: none;
  color: #fff;
}

.button {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 1em;
  border-radius: 0.5em;
  background-color: #333;
  width: 400px;
}

.button:hover {
  background-color: #444;
}

.link {
  margin: 1em 0;
}

.link h3 {
  font-size: 1em;
  font-weight: normal;
  margin-bottom: 0.5em;
  text-transform: uppercase;

}

.contact {
  color: red;
  text-decoration: underline;
}

.icon {
  color: red;
}

.logo {
  width: auto;
  height: 60px;
}

.header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.header-text h1,
.header-text h2 {
  margin: 0;
}

.header-text h2 {
  color: #666;
  font-size: 1em;
}