/* Basic CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* height: 100%; */
  font-size: 112.5%;
}

body {
  background-color: hsl(60, 10%, 3%);
  color: #fafafa;
  font-family: 'Zalando Sans', sans-serif;
  font-weight: 200;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100svh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: #4fbbc0;
  text-decoration: none;
  &:hover {
    cursor: pointer;
  }
}

/* @property --gradient-rotation {
  syntax: "<angle>";
  inherits: false;
  initial-value: -45deg;
} */

.container {
  /* border: solid 1px;
  border-color: hsl(48, 3%, 20%); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* width: 12rem;
  padding: 1rem; */
  /* background: conic-gradient(from --gradient-rotation, dimgray, rgb(63, 63, 63) 13% 87%, dimgray); */
}

h1 {
  color: dimgray;
  margin-bottom: 0.5rem;
  padding: 0.25rem;
  font-size: 1em;
  font-weight: normal;
}

.contact-links {
  text-align: center;
  list-style-type: none;
}

.contact-link {
  display: inline-block;
  padding: 0.5rem;
  color: inherit;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  &:hover {
    color: dimgray;
  }
}