/* Font */
@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');

/* * */
*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  user-select: none;
  box-sizing: border-box;
}

/* Body */
body {
  width: 100%;
  height: 185vh;
  background: linear-gradient(#f76cc7, #f53ab4, #f50da5);
  font-family: "Poppins";
  font-style: italic;
}

/* HeaderText */
.HeaderText {
  margin-top: 15px;
  font-size: 46px;
  font-weight: 900;
  text-align: center;
  color: #fff;
}

/* Line */
.line {
  width: 200px;
  height: 5.4vw;
  display: block;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 12px 24px 30px 54px;
}

/* TalkH */
.TalkH {
  margin-top: 35px;
  font-size: 27px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.TalkD {
/* TalkD */
  margin-top: 5px;
  font-size: 19px;
  font-weight: 400;
  padding: 21px 21px;
  text-align: center;
  color: #fff;
}

/* U */
U {
  font-weight: 900;
}

#ImgBir {
  width: 170px;
  height: 170px;
  border: 4px solid #f76cc7;
  border-radius: 100% 0% 20% 80% / 80% 0% 100% 20%;
}

#ImgTwo {
  width: 150px;
  height: 170px;
  border: 4px solid #f76cc7;
  border-radius: 0% 100% 80% 20% / 0% 100% 20% 80%;
}

#ribbon {
  width: 70px;
  height: 70px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* Button-Container */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

/* Button */
.btn {
  position: relative;
  padding: 20px 40px;
  font-size: 16px;
  border: 4px solid #f790c7;
  border-radius: 20px;
  background: none;
  cursor: pointer;
}

.btn a {
  font-weight: 900;
  font-family: "Poppins";
  font-size: 16px;
  color: #fff;
}

/* Ribbon */
.ribbon {
  width: 25px;
  position: absolute;
}

/* Köşeler */
.top-left {
  top: -10px;
  left: -10px;
}

.top-right {
  top: -10px;
  right: -10px;
}

.bottom-left {
  bottom: -10px;
  left: -10px;
}

.bottom-right {
  bottom: -10px;
  right: -10px;
}