/* 
=====================================================
                  FONTS AND COLORS
=====================================================
*/

@font-face {
  font-family: "noway";
  src: url("fonts/light/noway-light-webfont.eot");
  src: url("fonts/light/noway-light-webfont.eot?#iefix") format("embedded-opentype"),
    url("fonts/light/noway-light-webfont.woff2") format("woff2"),
    url("fonts/light/noway-light-webfont.woff") format("woff"),
    url("fonts/light/noway-light-webfont.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "noway";
  src: url("fonts/medium/noway-medium-webfont.eot");
  src: url("fonts/medium/noway-medium-webfont.eot?#iefix") format("embedded-opentype"),
    url("fonts/medium/noway-medium-webfont.woff2") format("woff2"),
    url("fonts/medium/noway-medium-webfont.woff") format("woff"),
    url("fonts/medium/noway-medium-webfont.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "noway";
  src: url("fonts/regular/noway-regular-webfont.eot");
  src: url("fonts/regular/noway-regular-webfont.eot?#iefix") format("embedded-opentype"),
    url("fonts/regular/noway-regular-webfont.woff2") format("woff2"),
    url("fonts/regular/noway-regular-webfont.woff") format("woff"),
    url("fonts/regular/noway-regular-webfont.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "noway";
  src: url("fonts/bold/noway-bold-webfont.eot");
  src: url("fonts/bold/noway-bold-webfont.eot?#iefix") format("embedded-opentype"),
    url("fonts/bold/noway-bold-webfont.woff2") format("woff2"),
    url("fonts/bold/noway-bold-webfont.woff") format("woff"),
    url("fonts/bold/noway-bold-webfont.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* CSS starts here */



:root {
  --primary: #33b4da;
  --primary-hover: #59ddcd;
  --danger: #f03564;
  --lightdark: #454545;
  --dark: #191919;
  --darker: black;
}




code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* preload images */
body::after {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  /* content: url(rainbow.jpg); */
}




body {
  color: #333;
  margin: 0;
  padding: 8px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    "Helvetica Neue", sans-serif;
}

body {
  background: black;
  color: white;

  /* Should disable scroll to refresh */
  overscroll-behavior-y: contain;
}
* {
  box-sizing: border-box;
}

a {
  color: rgb(0, 100, 200);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: rgb(0, 80, 160);
}

label {
  display: block;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  -webkit-padding: 0.4em 0;
  padding: 0.4em;
  margin: 0 0 0.5em 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;
}

input:disabled {
  color: #ccc;
}

button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}

button:disabled {
  color: #999;
}

button:not(:disabled):active {
  background-color: #ddd;
}

button:focus {
  border-color: #666;
}

@media (max-width: 576px) {
  .App {
    width: 100%;
    margin: initial !important;
  }
}

@media (min-width: 576px) {
  .App {
  }
  .App-wrapper {
    min-width: 400px;
    min-height: 650px;
  }
}

input[type="color"] {
  -webkit-appearance: none;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 5px;
}
input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}
input[type="color"]::-webkit-color-swatch {
  border: none;
}




/* mouse, touch pad */
@media (hover: hover) and (pointer: fine) {
  /* width */
  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f11a;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
}

body {
  margin: 0;
  padding: 0;
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
	padding: 0;
	margin: 0;
	height: 100vh;
	background: black;
 align-items: center;
 display: flex;
 flex-direction: column;
 font-family: 'noway', sans-serif;
}
.icon-wrapper {
  width: 70px;height:70px;padding:20px;border-radius: 50%;background:gray;color:white;margin:10px;
}

