@charset "UTF-8";

/**
  01. Breakpoint
  02. Color
  03. Grayscale
  04. Text Color
 */

:root {
  --brand-primary: #ffd800;
  --brand-secondary: #fcc700;
  --brand-tertiary: #00A29A;
  --brand-quaternary: #8ec31e;
  --gray-100: #ffffff;
  --gray-200: #999999;
  --gray-300: #666666;
  --gray-400: #333333;
  --gray-500: #000000;
  --text-primary: #111111;
  --text-secondary: #666666;
  --brand-danger: #FF0000;
  --brand-success: #009900;
  --linear01: linear-gradient(to right, #8ec31e 0, #00a29a 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all;
}

body {
  scroll-behavior: smooth;
  color: var(--text-primary);
  font-family: Pretendard,
    sans-serif !important;
}

a,
a:hover {
  color: #111;
  text-decoration: none !important;
}

img {
  vertical-align: bottom;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: 0;
  vertical-align: middle;
}

button,
[role="button"] {
  cursor: pointer;
}

.list-style-none {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}