.cormorant-garamond-light {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-style: normal;
}

.cormorant-garamond-regular {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
}

.cormorant-garamond-medium {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
}

.cormorant-garamond-semibold {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: normal;
}

.cormorant-garamond-bold {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: normal;
}

.cormorant-garamond-light-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
}

.cormorant-garamond-regular-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
}

.cormorant-garamond-medium-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
}

.cormorant-garamond-semibold-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: italic;
}

.cormorant-garamond-bold-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: italic;
}

.cinzel-regular {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: none; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: none; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #888; 
}

::-webkit-scrollbar-corner {
  background: none;
}

a, a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
}

body, html {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.writing-div {
  width: 50rem;
  height: 75svh;
  display: grid;
  grid-template-areas: 
      'main main main main main main'
      'footer footer footer footer footer footer';
  align-items: flex-start;
  text-align: center;
  padding: 20px;
  border: 4px solid black;
}

header {
  grid-area: header;
}

.main {
  grid-area: main;
}

footer {
  align-self: flex-end;
  background-color: #0F0E14;
  grid-area: footer;
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

hr {
  color: #0C1940;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .centered-div {
    width: 20rem;
    height: 90svh;
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    border: 4px solid black;
  }

  .writing-div {
    width: 20rem;
    height: 75svh;
    display: inline;
    overflow: scroll;
    align-items: flex-start;
    text-align: center;
    padding: 20px;
    border: 4px solid black;
  }

  footer {
    display: none;
  }

  .main > h2 {
    font-size: 15px;
  }
}