/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', Arial, sans-serif; /* Varsayılan olarak Open Sans */
}

html, body {
  height: 100%;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit; /* Bağlantının renk devralmasını sağlar */
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #035779;
}



.box .left, .box .right {
  display: flex;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.d-flex {
  display: flex;
  align-items: center;
}



a.link {
  padding: 20px 40px;
  border: 2px solid white;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  transition: all .2s;
}

.left img, .right img {
  width: 250px;
  margin-bottom: 30px;
  z-index: 3;
}

a.link {
  z-index: 3;
}

a.link:hover {
  background-color: white;
  color: #035779;
}

.left {
  background-image: url('../imgs/left.webp');
  background-size: cover;
  background-position: center;
}

.right {
  background-image: url('../imgs/right.webp');
  background-size: cover;
  background-position: center;
}

/* Overlay için */
.left::before, .right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Siyah overlay, opacity 0.5 */
  z-index: 1;
}

@media(max-width:576px) {
  .box {
    flex-direction: column;
    
  }

  .left img, .right img {
    width: 180px;
    margin-bottom: 30px;
    z-index: 3;
  }

  .box .left, .box .right {
    height: 50vh;
  }

  .box .left {
    border-right: unset;
    border-bottom: 2px solid #035779;
  }
  a.link {
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    transition: all .2s;
  }
}