:root {
  --bs-white-rgb: 224, 255, 255;
  --anarenk: #315438;
  --renk2: #00c2cb;
  --renk3: #e0ffff;
}


.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
  }

a {
  text-decoration: none;
}

@import url("https://fonts.googleapis.com/css2?family=Asap&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Asap", sans-serif;
}
body {
  background: var(--anarenk);
  text-decoration: none;
}
section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
section:nth-child(1) {
  color: var(--renk3);
}
section:nth-child(2) {
  color: var(--anarenk);
  background: var(--renk3);
}
section:nth-child(3) {
  color: var(--renk3);
}
section:nth-child(4) {
  color: var(--anarenk);
  background: var(--renk3);
}
section .container {
  margin: 100px;
}
section h1 {
  font-size: 5rem;
  margin: 20px;
}
section h2 {
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
}
section .text-container {
  display: flex;
}
section .text-container .text-box {
  margin: 20px;
  padding: 20px;
  background: var(--renk2);
}
section .text-container .text-box h3 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  section h1 {
    font-size: 4rem;
    text-align: center;
  }
  section .text-container {
    flex-direction: column;
  }
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}
.active.fade-left {
  animation: fade-left 1s ease-in;
}
.active.fade-right {
  animation: fade-right 1s ease-in;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}




.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 15;
  }


.cal-bg {
  background: var(--renk3);
}
.bg-cal {
  background: var(--anarenk);
}
.cal-line {
  border: 0.001rem solid var(--anarenk);
  height: 1px;
  width: 98%;
  margin: 40px auto 40px auto;
}
.cal-text{
  color: var(--anarenk);
}
.text-cal {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  scroll-behavior: smooth;
}
.text-container{
  margin: auto;
}