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

::selection {
  background-color: #155e75;
}

html {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

body {
  width: 100%;
  min-height: 100dvh;
  min-height: 100vh;
  height: 100%;
  background-color: #0c0a09;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f5f5f4;
}

a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 300ms ease;
  position: relative;
  padding: 0 .1rem;
}

a:hover {
  color: #1c1917;
}

a::after {
  content: "";
  background-color: #06b6d4;
  position: absolute;
  bottom: -0.05rem;
  left: -0.1rem;
  width: 100%;
  height: 0%;
  z-index: -1;
  transition: all 300ms ease;
  padding: .05rem;
}

a:hover::after {
  color: #22d3ee;
  height: 100%;
}

.flex-icon {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.flex-icon svg {
  height: 1rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

h1 {
  font-weight: 800;
  font-size: 2.5rem;
}
