/* Load EB Garamond from local assets (see fonts/eb-garamond). */
@font-face {
  font-family: 'EB Garamond';
  src:
    url('fonts/eb-garamond/EBGaramond-VariableFont_wght.ttf') format('truetype-variations'),
    url('fonts/eb-garamond/EBGaramond-Regular.ttf') format('truetype');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src:
    url('fonts/eb-garamond/EBGaramond-Italic-VariableFont_wght.ttf') format('truetype-variations'),
    url('fonts/eb-garamond/EBGaramond-Italic.ttf') format('truetype');
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
}

/* Split the screen in half */

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'EB Garamond', Georgia, serif;
  color: var(--text, #0f172a);
  -webkit-font-smoothing: antialiased;
  background: #ffffff;
}

.split {
  height: 100%;
  width: 50%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-x: hidden;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin: 0;
}

/* Control the left side */
.left {
  left: 0;
  background-color: white;
}

/* Control the right side */
.right {
  right: 0;
  background-color: white;
}

/* If you want the content centered horizontally and vertically */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.topright {
  position: absolute;
  top: 0%;
  /* left: 70%; */
  right: 10px;
}

div.topleft {
  position: absolute;
  top: 10px;
  left: 10px;
}

div.absolute {
  position: absolute;
  top: 100px;
  right: 0;
  width: 200px;
  height: 100px;
  border: 3px solid #73AD21;
}

/* Style the image inside the centered container, if needed */
.centered img {
  width: 150px;
  border-radius: 50%;
}

.footer {
  position: absolute;
  top: 90%;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
}

.aa {
  width: 90%;
  font-family: 'EB Garamond', Georgia, serif;
}

.button {
  border: none;
  color: #1F77B4;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  /* margin: 4px 2px; */
  background-color: Transparent;
  font-family: 'EB Garamond', Georgia, serif;
  /* color: #1E90FF; */
  border: 2px solid #1F77B4;
  letter-spacing: 0.25em;
}

.button:hover {
  color: #566573;
  border: 2px solid #566573;
  cursor: pointer;
}
