@font-face {
  font-family: "Earth";
  src: url(/Fonts/earthorbiter.ttf);
}
@font-face {
  font-family: "Caver";
  src: url(/Fonts/Caver\ Pitalsal.otf);
}
/************************************************/
* {
  box-sizing: border-box;
}
:root {
  --GP-Font-1: "Earth", sans-serif;
  --GP-Font-2: "Caver", sans-serif;
  --GP-Color-1: rgb(23, 24, 37);
  --bodyColor: #1e272e;
  --openColor: #2f3542;
  --itemsColor: #118488;
  --GP-CC: whitesmoke;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--GP-Color-1);
}
/************************************************/
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.open {
  margin: 80px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid var(--itemsColor); */
}
.open div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 400px;
  width: 300px;
  flex-direction: column;
  margin: 20px;
}
.open .l {
  border-right: 2px solid var(--itemsColor);
}
.l h3 {
  color: var(--itemsColor);
  font-family: var(--GP-Font-1);
  font-size: 60px;
  text-align: start;
}
/*********************************************************/
.r p {
  color: var(--itemsColor);
  font-size: 30px;
  font-family: var(--GP-Font-2);
  margin: 10px;
}
/***********************************************************/

h1 {
  padding: 15px;
  color: var(--bodyColor);
  background-color: var(--itemsColor);
  font-family: var(--GP-Font-2);
  border-radius: 15px;
  cursor: pointer;
}
h1:hover {
  box-shadow: 0 0 10px 2px var(--itemsColor);
}
