:root {
  --color-primary: #fcc707;
  --color-black: #222;
  --color-white: #eee;
  --color-bg: #fefefe;
}

@font-face {
  font-family: Lato;
  font-display: swap;
  src: url(./fonts/Lato-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Lato;
  font-display: swap;
  src: url(./fonts/Lato-Bold.ttf);
  font-weight: 600;
}

body {
  font-family: Lato, 'Lato', sans-serif;
  margin: 0;
  font-size: 2vh;
  background: var(--color-bg);
  color: var(--color-black);
  height: 100%;
  overflow-y: scroll;
}

h1 {
  text-align: center;
  margin-top: 5rem;
  font-weight: 600;
}

h2 {
  text-align: center;
  font-weight: 600;
}

h3 {
  margin: 0;
  font-weight: 600;
}

p {
  line-height: 1.5rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.flex-1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  height: 4rem;
  transform: translateY(-4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--color-bg);
  z-index: 1;
  transition: 0.5s;
  opacity: 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}

header img {
  height: 3rem;
}

header.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  box-sizing: border-box;
  padding: 2rem;
}

section.welcome {
  height: 60%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.welcome img {
  width: 30rem;
  max-width: 80%;
}

section.welcome p {
  max-width: 50rem;
}

.box-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.box {
  flex: 1;
  margin: 2rem;
  padding: 2rem;
  background: rgba(127, 127, 127, 0.1);
}

.box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-left {
}

.contact-left {
}

.contact-item {
  display: flex;
  line-height: 1.5rem;
  margin: 1rem;
}

.contact-item img {
  margin-right: 0.5rem;
  height: 1.5rem;
}

.contact-item p {
  margin: 0;
}

footer {
  box-sizing: border-box;
  width: 100%;
  margin-top: 5rem;
  padding: 2rem;
  background: rgba(127, 127, 127, 0.1);
}

footer h3 {
  text-transform: uppercase;
}

.copyright {
  margin-top: 3rem;
}
