@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 1em;
  font-family: poppins;
  color: #f2f2f2;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.hero-img {
  width: 100%;
  height: 100vh;
  background: url(images/Tshirt.jpg);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  background-position-x: 20%;
  background-position-y: 20%;
  z-index: -1;
  animation: Bellaintroload 3s forwards;
}

header {
  display: flex;
  justify-content: space-between;
}
header svg {
  width: 2.3em;
  margin-top: -0.2 0.4em;
  cursor: pointer;
}
header .logo {
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
}
header span {
  color: black;
}

nav {
  position: fixed;
  right: 0;
  top: 0;
  background: #5688c7;
  width: 50%;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.5s ease in out;
}
nav a {
  color: black;
  padding: 0.75em 2em;
  display: block;
  font-weight: bold;
}
nav a:hover {
  background: white;
  border-radius: 5em;
  width: 70%;
}
nav ul {
  padding: 0;
  margin-top: 8em;
}
nav .close {
  float: right;
  margin: 2em;
  width: 2.5em;
  background: #5688c7;
}
nav .close path {
  fill: black;
}

section.hero {
  color: black;
}
section.hero h1 {
  font-size: 2.2rem;
  margin-top: 1.2em;
  line-height: 2.5rem;
}
section.hero h1 span {
  color: #fff;
}
section.hero .subhead {
  font-size: 1.2rem;
  margin-top: 0.9em;
  color: #fff;
  font-weight: 500;
}
section.hero .down-arrow {
  stroke: #fff;
  position: absolute;
  bottom: 2em;
  width: 1em;
  animation: Bellamovearrow 1s alternate-reverse infinite;
}
section.hero .down-arrow path {
  fill: #fff;
}

@media only screen and (min-width: 680px) {
  body {
    margin: 1.5em 5em;
  }
  section.hero h1 {
    font-size: 2.8rem;
    margin-top: 2em;
    line-height: 3.3rem;
  }
}
@media only screen and (min-width: 920px) {
  .menu,
  .close {
    display: none;
  }
  nav {
    transform: translateX(0);
    position: unset;
    display: block;
    width: auto;
    height: auto;
    background: none;
  }
  nav ul {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  nav ul a {
    color: white;
    padding: 0.5em 1em;
    font-size: 0.9rem;
  }
  nav ul a:hover {
    background: none;
    background: black;
    width: 100%;
    border-radius: 5em;
  }
  .hero-img {
    width: 50%;
    height: 100%;
    right: 0;
    left: unset;
    width: 42em;
  }
  header .logo {
    color: #5688c7;
  }
  header .logo span {
    color: black;
  }
  section.hero {
    height: auto;
    width: 40%;
    margin-bottom: 8em;
    padding: 1em;
  }
  section.hero h1 {
    font-size: 3rem;
    margin-top: 2.1em;
    line-height: 3.3rem;
  }
  section.hero h1 span {
    color: black;
  }
  section.hero .subhead {
    color: black;
    margin-bottom: 3em;
  }
  section.hero .down-arrow {
    stroke: #000;
    position: absolute;
    bottom: 0.4em;
    width: 1em;
    animation: Bellamovearrow 1s alternate-reverse infinite;
  }
  section.hero .down-arrow path {
    fill: #000;
  }
}
.open-nav {
  transform: translateX(0%);
}

@keyframes Bellaintroload {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes Bellamovearrow {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(0);
  }
}/*# sourceMappingURL=main.css.map */
