* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  image-rendering: pixelated;
  cursor: url('/images/misc/cursor-ec.png'), auto;
}

:root{
  --outline-white:
  drop-shadow(-1px 0 0 #e2e2e2)
  drop-shadow(1px 0 0 #e2e2e2)
  drop-shadow(0 -1px 0 #e2e2e2)
  drop-shadow(0 1px 0 #e2e2e2);

  --outline-black:
  drop-shadow(-1px 0 0 #000000)
  drop-shadow(1px 0 0 #000000)
  drop-shadow(0 -1px 0 #000000)
  drop-shadow(0 1px 0 #000000);
}

@font-face{
  font-family: 'aquiline_two';
  src: url(/stylesheets/fonts/aquilinetwo-webfont.woff),
       url(/stylesheets/fonts/aquilinetwo-webfont.woff2);
  font-weight: normal;
  font-style: normal;
}

@keyframes fade-in{
  0% {opacity: 0;}
  100% {opacity: 1;}
}

::selection{
  color: #302622;
  background: transparent;
}

a{color: #e2d8ca; text-decoration: 1px underline dotted white;}
a:hover{font-style: italic;}

.wrapper{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body{
  background-image: url(https://i.postimg.cc/WbmN1BjP/ec-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #f1e9de;
  animation: fade-in 0.4s ease-in;
}

.page{
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 500px;
  height: 100px;
}

h1{
  font-family: 'aquiline_two';
  font-size: 95px;
  color: #e2d8ca;
  text-shadow: 1px 1px 0 #000000, -1px -1px 0 #000000, -1px  1px 0 #000000, 1px  -1px 0 #000000;
  filter: drop-shadow(1px 1px 3px #000000);
}

h2{
  font-family: 'aquiline_two';
  font-size: 30px;
  color: #d1c6b7;
  letter-spacing: 3px;
  text-shadow: 1px 1px 0 #000000, -1px -1px 0 #000000, -1px  1px 0 #000000, 1px  -1px 0 #000000;
  filter: drop-shadow(1px 1px 3px #000000);
}

p{
  position: relative;
  top: 150px;
  font-family: 'Times New Roman', Times, serif;
  line-height: 0.9;
  letter-spacing: 2px;
  word-spacing: 10px;
  text-align: right;
  font-size: 17px;
  text-shadow: 1px 1px 0 #000000, -1px -1px 0 #000000, -1px  1px 0 #000000, 1px  -1px 0 #000000;
  filter: drop-shadow(1px 1px 3px #000000);
}

#text1{
  position: absolute;
  top: -120px;
}

#text2{
  position: absolute;
  top: -150px;
  left: -10px;
}