/* Global Reset
==================================================== */

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

* {
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

.wp-post-image {
  max-width: 100%;
  width: auto !important;
  height: auto !important;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font: inherit;
}

#root,
#__next {
  isolation: isolate;
}

a {
  color: inherit;
  text-decoration: none;
}

/* General Styles
==================================================== */

:root {
  --color-primary: #b9d7af;
  --color-secondary: #006464;
}

/* Import Fonts
==================================================== */

@font-face {
  font-family: "Diatype";
  src: url("./assets/fonts/DaimitoNormal-Semibold.woff");
  font-weight: 300;
  font-style: light;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Diatype";
  font-weight: 500;
  font-style: normal;
  color: var(--color-secondary);
  background-color: var(--color-primary);
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  padding: 2rem;
}

h1 {
  font-size: 36px;
  margin-bottom: 4rem;
}

p {
  margin-bottom: 1.5em;
}

a {
  text-decoration: none;
  font-size: 24px;
  transition: all 0.2s ease-in-out;
}

a:hover {
  scale: 1.05;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

img {
  max-width: 14vw;
  min-width: 200px;
  padding-bottom: 6rem;
}
