
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
}

@keyframes slideInFromBottom {
  from {
      opacity: 0;
      transform: translateY(-30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
:root {
  --c1: #ffffff;
  --c2: #c71340;
  --c3: #12161b;
  --c4: #0a0c0f;
  --animationSpeed: 200ms;
}

body {
  color: var(--c1);
  background-color: var(--c4);
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  scroll-behavior: smooth;
}

.boxContainer {
  display: grid;
  grid-template-columns: repeat(3, 100vw); /* Adjust the size as needed */
  grid-template-rows: repeat(3, 100vh); /* Adjust the size as needed */
  grid-gap: 10px;
  z-index: -20;
}
.box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--c4);
  /* border: 2px solid var(--c1); */
}

.logo {
  animation: slideInFromBottom 1s ease-out;
}

.hi-welcome {
  font-size: 60px;
  animation: slideInFromBottom 1s ease-out;
}

.title {
  margin: 60px;
  animation: slideInFromBottom 1s ease-out;
}

.paragraph {
  font-size: 30px;
  font-weight: 500;
  animation: slideInFromBottom 1s ease-out;
}

.changinText {
  font-weight: 200;
  animation: slideInFromBottom 1s ease-out;
}

.buttonContainer {
  display: grid;
  grid-template-columns: repeat(3, auto); /* Adjust the size as needed */
  grid-gap: 15px;
  animation: slideInFromBottom 1s ease-out;
}

.button a {
  all: unset;
  text-decoration: none;
}

.button {
  background-color: var(--c4);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--c2);
  border-radius: 13px;
  width: 200px;
  font-size: 20px;
  padding: 15px;
  transition: var(--animationSpeed) ease;
  box-shadow: 0 0 5px #c71340, 0 0 25px #c71340;
}

.button:hover {
  border: 3px solid var(--c1);
  cursor: pointer;
}

.siktir {
  all: unset;
}
.siktir:hover {
  all: unset;
}

.red {
  color: var(--c2);
}

/*why is this not working .icon*/
/* cuz u r stupid. */
.Main {
  background-image: url(../files/Logob.png);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.z-10{
  z-index: 10;

}

.underline{
  position:relative;
  font-size: 2em;
}
.underline::after {
  content: '';
  position: absolute;
  bottom: -3px; /* Adjust the distance of the underline from the text */
  margin: 0 auto;
		  left: 0;
        right: 0;
		  width: 50%;
      height: 4px;
  background-color:var(--c2); /* Change the color of the underline as needed */
}

.languages-h1::after{
bottom: -11px;
}
/* .logo {
  position: absolute;
  top: 10px;
} */
