* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: grid;
  grid-template-rows: minmax(40vh, 50vh) 1fr auto;

  width: 100%;
  min-height: 100vh;

  background-image: url("../../images/bg.png");
  background-position: center bottom;
  background-size: cover;

  font-family: var(--ff-main);
  color: var(--color-text);
}

button,
input,
textarea,
select {
  border: none;
  outline: none;
  background: none;

  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}