@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@600&family=Outfit:wght@600&display=swap");

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

:root {
  --footer-color: #bfbfbf;
  --background-color: #f1f1f1;
  --text-color: #252525;
  --font-main: "Be Vietnam Pro", sans-serif;
  --font-footer: "Outfit", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--background-color);
  font-weight: 600;
}

main {
  display: flex;
  flex: 1;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 15vh;
}

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

footer {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--footer-color);
  text-align: center;
  font-family: var(--font-footer);
  font-size: 22px;
  gap: 4px;
}

footer img {
  max-width: 24px;
  height: 24px;
  margin: auto;
}

.github {
  display: flex;
}
