/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html,
body {
  background-image: url("https://bog-body.neocities.org/index/frontdoor.jpg");
  background-position: center;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: sans-serif;
}

#knocker{
  display: block;
  padding: 50px;
  background-image: url("https://bog-body.neocities.org/index/knocker.png");
  transition: transform .2s;
  position: absolute;
  left: -13%;
  top: -10%;
  scale: 30%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}

#knocker:hover {
  transform: scale(1.5);
}


.title {
  color: #B22222;
  font-size: 4em;
  font-family: luminari;
  margin: 0;
  top: 10%;
  padding: 4%;
  text-shadow: 2px 2px 4px #000000;
}

.optimize{
  color: black;
  font-family: Luminari, fantasy;
  font-size: .8em;
}

/* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
  font-size: .9em;
  font-weight: bold;
  color: #fff;
}
.ribbon {
  --s: 1.8em; /* the ribbon size */
  --d: .8em;  /* the depth */
  --c: .8em;  /* the cutout part */
  
  padding: 0 calc(var(--s) + .5em) var(--d);
  line-height: 1.2;
  background:
    conic-gradient(at left  var(--s) bottom var(--d),
     #0000 25%,#0008 0 37.5%,#0004 0) 0   /50% 100% no-repeat,
    conic-gradient(at right var(--s) bottom var(--d),
     #0004 62.5%,#0008 0 75%,#0000 0) 100%/50% 100% no-repeat;
  clip-path: polygon(0 var(--d), var(--s) var(--d),var(--s) 0,calc(100% - var(--s)) 0,calc(100% - var(--s)) var(--d),100% var(--d),calc(100% - var(--c)) calc(50% + var(--d)/2),100% 100%,calc(100% - var(--s) - var(--d)) 100%,calc(100% - var(--s) - var(--d)) calc(100% - var(--d)),calc(var(--s) + var(--d)) calc(100% - var(--d)),calc(var(--s) + var(--d)) 100%,0 100%,var(--c) calc(50% + var(--d)/2));
  background-color: #F5DEB3; /* the main color */
  width: 20%;
  position: absolute;
  left: 40%;
  top: 90%;
}