* {
  box-sizing: border-box;
}

.page-title {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  background-color: rgba(66,66,66,.5);
  backdrop-filter: blur(5px);
  align-items: center;
  padding: 1rem;
}

.page-title__headline {
  margin: 0;
  font-family: 'Montserrat';
  font-size: 1.7rem;
}

.page-title__button{
 margin: 0;
}

.export-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.export-area__inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 700px;
  max-height: 80%;
  max-width: 80%;
  padding: 2rem;
  background-color: #2d2d2d;
}

.export-area__inner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.export-area__copybtn {
  margin: 0;
}

.export-area__close {
  font-size: 2rem;
  cursor: pointer;
}

.export-area__html {
  height: 100%;
  margin-bottom: 0;
}

.export-area__success {
  margin-bottom: 1rem;
  color: #75f118;
}

.blog-content {
  margin-top: 12rem !important;
}
