/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

 /* customs */
body {
  font-family: 'Lexend Deca', sans-serif;
  background-color: #ffffff;
  color: #000000;
  position: relative;
  overflow: hidden;
  height: 100vh;
}

body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.left-side h1 {
  font-size: 3.5em;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.left-side p {
  font-size: 1.5em;
}

svg.zig {
  position: absolute;
  height: 100%;
  width: auto;
  right: 0;
  opacity: 0.1;
  pointer-events: none;
}

.left-side,
.right-side {
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  body {
    grid-template-columns: 1fr;
  }

.left-side {
  align-items: center;
  text-align: center;
}

.right-side img {
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
}
}

@media (max-width: 575px) {
  .left-side {
    font-size: 0.5em;
  }
}
