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

/* Landscape phones and down */
/* Landscape phone to portrait tablet */
/* Portrait tablet to landscape and desktop */
/* Large desktop */
html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  font-size: 2rem;
}

p {
  margin: 1rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1rem 0 2rem 0;
}

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
}

::placeholder {
  color: var(--dark);
}

/* text */
.text-danger {
  color: var(--danger);
  font-size: 1.2rem;
  font-weight: bold;
}

.btn {
  background-color: white;
  font-weight: 700;
  color: var(--text-color-light);
  font-size: 1.6rem;
  border: 0;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-radius: 3rem;
  margin: 0 1rem;
  filter: drop-shadow(1rem 1rem 1.4rem #333);
  transition: all 0.4s;
}
.btn:hover {
  transform: scale(1.1);
}

.btn-primary {
  background-color: var(--bg-btn-primary);
  color: var(--text-color-light);
}

.btn-secondary {
  background-color: var(--bg-btn-secondary);
  color: var(--text);
}

.btn-danger {
  background-color: var(--danger);
  color: var(--text-color-light);
}

.btn-small {
  padding: 5px 10px;
  font-size: 1.4rem;
}

.default-input {
  height: 45px;
  width: 400px;
  background: white;
  border: 0;
  padding: 1rem;
  font-size: 1.6rem;
  color: var(--dark);
  outline: 0;
  margin-bottom: 1rem;
  margin: 1rem 0;
  border-radius: 10px;
}
.default-input:hover {
  border: 1px solid white;
  background: #333;
  color: white;
}
.default-input:hover::placeholder {
  color: white;
}

textarea {
  min-height: 20rem;
  width: 820px;
}
@media (max-width: 767px) {
  textarea {
    width: 400px;
  }
}

.title-small {
  letter-spacing: 0.5rem;
  font-size: 1.7rem;
}

.text-primary {
  color: var(--primary);
}
.text-hint {
  color: var(--hint);
}
.text-italic {
  font-style: italic;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.container {
  display: block;
  min-height: 100vh;
  position: relative;
}

/*# sourceMappingURL=style.css.map */
