* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color: #333;
  text-rendering: optimizeLegibility;
  font-size: large;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}
a {
  text-decoration: none;
}
.container {
  width: 100vw;
  min-height: 100%;
}
.icon {
  font-size: x-large;
}
.disabled {
  background-color: #d8d1d1;
  padding: 10px;
  cursor: not-allowed;
  color: #000;
}
.btn {
  border-radius: 5px;
  border: none;
  font-weight: bold;
  transition: border-radius 0.3s ease both;
}
.btn:hover, .btn:active {
  border-radius: 2rem;
}
@media (width < 480px) {
  html {
    font-size: small;
  }
}

@media (width < 767px) {
  html {
    font-size: medium;
  }
}