/* Home */

@font-face {
  font-family: "THICCCBOI-Black";
  src: url("../fonts/THICCCBOI-Black.ttf");
}

@font-face {
  font-family: "THICCCBOI-Regular";
  src: url("../fonts/THICCCBOI-Regular.ttf");
}

@font-face {
  font-family: "THICCCBOI-Medium";
  src: url("../fonts/THICCCBOI-Medium.ttf");
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

body {
  font-family: "THICCCBOI-Regular", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
}

section.homepage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image: url("../images/bg_elements.png"),
    linear-gradient(to bottom, #048aff 0%, #d8fdff 70%);
  background-size: cover;
  background-position: center;
}

section.homepage .homepage-content {
  text-align: center;
  padding: 10px;
}

section.homepage .homepage-content h6 {
  display: inline-block;
  font-size: 1rem;
  margin: 0;
  background: white;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 6px;
}

section.homepage .homepage-content h2 {
  font-family: "THICCCBOI-Black";
  font-size: 3.5rem;
  margin: 25px 0;
}

section.homepage .homepage-content h4 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  line-height: 24px;
}

section.homepage .homepage-content img {
  margin: 30px 0 0;
  width: 500px;
  max-width: 100%;
  padding: 10px;
}

/* End of Home */
