@import url("https://fonts.googleapis.com/css?family=Montserrat:900|Ubuntu+Mono");
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}


body {
  min-height: 100vh;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #36416b;
  background: #fff;
  background: url("./img/bg66.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
}

.align li{
  margin: 100px 20px 30px 30px;
}
.b2 li{
  margin: 90px 20px 30px 30px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2.9rem 2.4rem;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.container__intro {
  text-align: center;
}


.container__intro h1 {
  font-size: 3rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  /* padding-bottom: 60px; */
  color: #000000;
  font-family: "Poppins";
  /* margin: 40px; */
}

.container__intro p {
  line-height: 2;
  font-size: 1.4rem;
  overflow-wrap: break-word;
}

table {
  transform: rotateZ(-90deg) perspective(500px) rotateX(2deg);
}

table tr td {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  -webkit-background-clip: text;
  background-clip: text;
  background: url("./img/bg66.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  color: transparent;
  text-transform: uppercase;
  text-align: center;
  color: #EFF0EF;
  cursor: pointer;
  border: 2px solid #f3a53c;
  border-radius: 0 10px 10px 0;
  padding: 0.6rem 2.2rem 0.6rem 0.6rem;
  background: linear-gradient(to right, #0b3f7e 92%, #f3a53c 92%, #f3a53c 97%, #0b3f7e 97%);
  transition: all 0.5s ease-out;
  position: relative;
}

table tr td:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 10px;
  width: 100%;
  border-radius: 0 0 10px 10px;
  background: #fff;
  transition: all 0.5s ease-out;
  font-family: 'Poppins', sans-serif;
}

table tr td:hover {
  transform: translateY(-40px);
}

table tr td:hover:before {
  height: 40px;
}

.accordion p{
  text-align: center;
  font-family: 'Poppins';
  font-size: 20px;
  color: #000000;
  animation: select 2s ease infinite ;

  
}
.accordion pre {
  color: rgb(0, 0, 0);
  max-width: max content;
  overflow-x: auto;
  animation: fadeIn 0.5s ease-out both;
  padding-top: 25px;
  text-overflow: clip;

}

.accordion pre code {
  font-size: 16px;
  line-height: 4;
  overflow-wrap: break-word;
  font-family: 'Poppins', sans-serif;
}

@-moz-keyframes fadeIn {

  0%,
  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {

  0%,
  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {

  0%,
  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {

  0%,
  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes select{
  0%{
    color: #000000;
  }
  50%{
    color: red;
  }
  100%{
    color: #000000;
  }
}