* { margin: 0; box-sizing: border-box; }

@font-face {
    font-family: "Gangster Grotesk Regular";
    src: url(type/GangsterGrotesk-Regular.otf)
}

@font-face {
    font-family: "Gangster Grotesk Bold";
    src: url(type/GangsterGrotesk-Bold.otf);
}

@font-face {
    font-family: "Savate Regular";
    src: url(type/savate-regular.otf)
}

body {
  /* height 100% of the browser + 10 sections at 1500px minus one for the first visible one to scroll into   */
  height: calc(100vh + 13500px);
  cursor: url('assets/heal-cursor.png'), auto;
}

section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

div {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #f9f6de;
  padding: 40px;
  will-change: transform, background-color;
}

.left, .right {
    display: flex; 
    align-items: center;
    flex-direction: column;  
}

img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

h1 {
    font-family: "Savate Regular";
    color: #291cf5;
    font-size: 52px;
    letter-spacing: 4px;
}

h1.title {
    padding: 20px;
}

p {
    font-family: "Gangster Grotesk Regular";
    font-size: 34px;
    padding: 20px;
    text-align: justify;
}

p::selection, h1::selection {
  background-color: #d47233;
  color: #f9f6de;
}

a.repo {
  font-family: "Gangster Grotesk Bold";
  font-size: 14px;
  padding: 5px;
  color: #291cf5;
  text-decoration: none;

  border: 2px solid #291cf5;

  position: absolute;
  bottom: 10px;
  right: 10px;
}

p.footer {
    font-size: 12px;
    
}


img.plant {
  border: 5px solid #d47233;
}



div:first-child {
  text-align: right;
}

div:last-child {
  left: auto;
  right: 0;
}

