*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url("../images/repeat.jpg");
  font-family: calibri !important;
  overflow: hidden;
}
::-webkit-scrollbar {
  width: 0;  /* Remove scrollbar space */
}

.section-scroll{
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
  scroll-behavior: smooth;
}

section {
  height: 100vh;
  background-attachment: fixed;
}

@media screen and (min-width: 1200px) {
  section {
    scroll-snap-align: start;
  }
}

.header{
  background-image: url("../images/background.jpg");
  height: 100%;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.baslik1{
  font-family: cocogoose;
  font-size: calc(3vw + 4vh);
  color: white;
  line-height: 1.5;
}

.baslik2{
  font-family: calibri;
  font-size: calc(1.2vw + 2vh);
  color: white;
  font-weight: lighter;
  line-height: 0.5;
}

.hakkimda-baslik {
  font-family: cocogoose;
  font-size: calc(1.5vw + 3vh);
  color: white;
  display: block;
}

.hakkimda-yazi {
  font-family: calibri;
  font-size: calc(0.55vw + 1.75vh);
  color: #ffffffcc;
  display: block;
}

header::after{
  content: '';
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top,black,transparent);
  z-index: 1;
}

.hakkimda::after{
  content: '';
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom,black,transparent);
  z-index: 1;
}

.projelerim-baslik{
  font-family: cocogoose;
  font-size: calc(2vw + 2vh);
  color: white;
}

.projelerim .card{
  width: 100%;
  height: 100%;
  font-family: calibri;
  background-color: #121212;
  color: #ffffff90;
  position: relative;
  transition: all 0.3s ease;
}

.projelerim .card:hover{
  transform: scale(1.1);
}