/* Font */
@font-face {
  font-family: 'PlaypenSansHebrew';
  src: url('fonts/PlaypenSansHebrew-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
html, body {
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Heading */
h1 {
  font-family: 'PlaypenSansHebrew', sans-serif;
  font-style: italic;
  font-size: 3.2em;
  color: #1cb463;
}

/* Image */
img {
  max-width: 100%;
  max-height: 100vh;
}
