*,
:after,
:before {
  box-sizing: inherit;
}

/**********TAG SELECTORS**********/

html {
  box-sizing: border-box;
  font-size: 100%;
}

body {
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  max-width: 100%;
  min-height: 100vh;
  height: auto;
  letter-spacing: 0.1em;
}

h1 {
  color: #024873;
}

h2 {
  color: #024873;
}

hr {
  border-style: none;
  border-top-style: dotted;
  border-color: rgb(196, 196, 196);
  border-width: 5px;
  width: 100px;
}

/**********CLASS SELECTORS**********/

.logo {
  width: 225px;
  /* height: 150px; */
  display: block;
  margin: 35px auto;
  border-radius: 100%;
}

.links {
  display: block;
  max-width: 550px;
  margin: 0 auto 15px;
  margin-bottom: 5px;
  padding: 15px 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  color: black;
  border-radius: 10px;
  cursor: pointer;
}

.links .links:hover {
  background-color: #fff;
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}



/* opsi web warna req twostrap pastel */
.links .links_website {
  border-bottom: 3px solid #87CEEB;
  box-shadow: inset 0 -4px 0 #87CEEB;
  border: 2px solid #87CEEB;
  background-color: #87CEEB;
  position: relative;
}

/* opsi web warn gold pastel */
/* .links .links_website {
  border-bottom: 3px solid #E5D8C3;
  box-shadow: inset 0 -4px 0 #E5D8C3;
  border: 2px solid #E5D8C3;
  background-color: #E5D8C3;
  position: relative;
} */

.links .links_shopee {
  border-bottom: 3px solid #ffa093;
  box-shadow: inset 0 -4px 0 #ffa093;
  border: 2px solid #ffa093;
  background-color: #ffa093;
  position: relative;
}

.links .links_tiktok {
  border-bottom: 3px solid #bedde8;
  box-shadow: inset 0 -4px 0 #bedde8;

  border: 2px solid #bedde8;
  background-color: #bedde8;
  position: relative;
}

.links .links_tokopedia {
  border-bottom: 3px solid #73e2a7;
  box-shadow: inset 0 -4px 0 #73e2a7;

  border: 2px solid #73e2a7;
  background-color: #73e2a7;
  position: relative;
}

.links .links_lazada {
  border-bottom: 3px solid #bdc7ed;
  box-shadow: inset 0 -4px 0 #bdc7ed;

  border: 2px solid #bdc7ed;
  background-color: #bdc7ed;
  position: relative;
}

.links .links_corporate_order {
  border-bottom: 3px solid #E5D8C3;
  box-shadow: inset 0 -4px 0 #E5D8C3;
  border: 2px solid #E5D8C3;
  background-color: #E5D8C3;
  position: relative;
}

.links .links_whatsapp {
  border-bottom: 3px solid #73e2bf;
  box-shadow: inset 0 -4px 0 #73e2bf;

  border: 2px solid #73e2bf;
  background-color: #73e2bf;
  position: relative;
}

.link-logo-container {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; /* Adjust size as needed */
  height: 30px; /* Adjust size as needed */
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-logo {
  max-width: 80%;
  max-height: 80%;
}

.channels {
  display: flex;
  max-width: 150px;
  margin: 0 auto;
}

.channels .channels_item {
  flex: 5;
  margin-right: 5px;
  transition: transform 0.2s;
  color: #024873;
  text-decoration: none;
}

.channels_item:hover {
  transform: scale(1.25) rotate(1turn);
  transition: transform 1.5s;
}

/**********ID SELECTORS**********/
/*ID Selectors can only be ussed once per page*/
/*

#heading {
  color: blue
}

*/
