*{
    -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
::selection {
    color: none;
    background: none;
}
/* For Mozilla Firefox */
::-moz-selection {
    color: none;
    background: none;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
@keyframes myanimation {
  50% { background-color: rgba(0, 127, 255, 0.2); } /* Brown */

  75% { background-color: rgba(0, 127, 255, 0.2); } /* Brown */
}

.layout {
  animation: myanimation 4s infinite;
  background-position: 100% 0%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 100vh;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  margin-top: 80px;

  margin-bottom: 30px;
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.heading {
  margin: 0;
  font-size: 30px;
  margin-bottom: 30px;
}

.btn-list {
  width: 250px;
}

.btn-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 10px;
  text-decoration: none;
  line-height: 1;
  color: #2e2f2f;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid #6d6d6d;
  border-radius: 10px;
}
.btn-item:hover {
      border: 1px dashed #6d6d6d;
}
.btn-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 12px;
}