@charset 'UTF-8';
/** 
* reset
**/
:root {
  --blue: #4682b4;
  --bluetwo: #37B2EA;
  --bluethree: #4cbbc8;
  --orange: #ec8b19;
  --red: #e22373;
  --yellow: #f4aa07;
  --purple: #522173;
  --white: #e1e0de;
  --whitetwo : #ffffff;
}
/**
* common
**/
body {
  margin: 0;
  color: var(--whitetwo);
  font-family: sans-serif;
}
.wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}
.box {
  margin: auto;
  padding: 0 10px;
  border: 1px solid black;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
}