/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/

/* COLOR THEME */
:root {
  --primary-color: ##e7191e;
  --secondary-color: #0e0202;
  --background-color: ##fffefe;
  --text-color: #0e0202;
  --btn-text: #eee;
  --btn-color: #e6191f;
  --btn-color2: #e7191e;
  --btn-color3: #e7191e;
  --btn-shadow: #111;
}

@font-face {
  font-family: "dummy";
  src: url(media/fonts/dumgum.woff2);
}
@font-face {
  font-family: "dum2";
  src: url(media/fonts/dumgum2.woff2);
}

/* UNIVERSALS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  font-family: "Gochi Hand", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
}

img {
  width: 100%;
}

.container {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

header {
  font-family: "dummy", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;

  flex-grow: 0;
  margin-top: 64px;
  margin-bottom: 32px;
  width: 80%;
}
nav {
  display: flex;
  align-items: center;
}

.header-img {
  width: 255px;
}

.content {
  flex-grow: 1;
  height: 100%;
}

.hero {
  position: relative;
}

.claim {
  position: absolute;
  left: 10%;
  bottom: -60px;
}

.take {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 70px;
  position: relative;
}
.take img {
  top: -100px;
  right: 0;
  z-index: -12;
}

footer {
  position: relative;
  flex-grow: 0;
  background-color: #e7191e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  color: #fff;
  padding: 15px;
  width: 100%;
}
#footer-dum-left {
  position: absolute;
  width: 100px;
  bottom: 25px;
  left: 100px;
  z-index: -10;
  transform: scaleX(-100%);
}

#footer-dum-right {
  position: absolute;
  width: 100px;
  right: 100px;
  bottom: 25px;
  z-index: -10;
}

/* BUTTONS */

.btn {
  padding: 10px 20px;
  background-color: var(--btn-color);
  border-radius: 30px;
  color: var(--btn-text);
  font-size: 14px;
  margin: 0 10px;
  font-family: "dummy";
}

.clickable {
  background-color: var(--btn-color);
  cursor: pointer;
}

.black {
  background-color: black;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-icon {
  padding: 5px;
  width: 50px;
}

/* Media Queries for Mobile */
@media (max-width: 1000px) {
  header {
    flex-direction: column;
  }
  footer {
    flex-direction: column;
  }
}

@media (max-width: 658px) {
  nav {
    flex-direction: column;
  }
  .btn {
    margin-bottom: 5px;
  }
}
