@charset "UTF-8";
/* Normal / Regular (400) */
@font-face {
  font-family: "BL";
  src: url("./assets/fonts/Poppins-Medium.ttf") format("ttf");
  font-weight: 100; /* Normal kalınlık */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BL";
  src: url("./assets/fonts/Poppins-Thin.ttf") format("ttf");
  font-weight: 200; /* Normal kalınlık */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BL";
  src: url("./assets/fonts/Poppins-Black.ttf") format("ttf");
  font-weight: 300; /* Normal kalınlık */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BL";
  src: url("./assets/fonts/Poppins-Light.ttf") format("ttf");
  font-weight: 400; /* Normal kalınlık */
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  background-color: #560ccf;
  box-sizing: border-box;
  outline: 0;
  font-family: "BL", sans-serif;
  font-size: 10vw;
  text-align: center;
}

html, body {
  width: 100vw;
  height: 100vh;
}

div {
  background-color: rgba(0, 0, 0, 0.103);
}

.main-container {
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
}
.main-container .block {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10%;
  opacity: 0;
  transition: 1.2s opacity;
  color: #fff;
}
.main-container .block svg {
  width: 40%;
  border-radius: 10%;
  overflow: hidden;
  background-color: transparent;
}/*# sourceMappingURL=mainstyle.css.map */