@import url(./Card.css);
@import url(./Box.css);

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

body {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  display: flex;
  position: relative;
  background-color:white;
  
}

svg {
  height: 100px;
  width: 100px;
  stroke-width: 2px;
}

@media(max-width: 360px){
  *{
    font-size: 16px;
  }
}

