


/* -----Reset----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}

/* -----Common----- */
body {
  background-color: #fff;
  width: 100%;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease-in;
}

li {
  list-style: none;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

li:hover {
  transform: scale(1.1);
}

label {
  cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

/* -----Header----- */
header {
  width: 100%;
  padding: 20px 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: hidden;
}

/* Logo */
header .logo {
  position: relative;
  z-index: 101;
  max-width: 180px;
  text-align: center;
}

header .logo img {
  width: 100%;
}


/* -----Container----- */
.container {
  position: relative;
  z-index: 100;
  min-height: 75vh;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 100px;
  overflow: hidden;
}

/* Text */
.container .text-box {
  width: 600px;
  padding: 20px;
  text-align: left;
}

.container .text-box h2 {
  font-size: 4rem;
    font-family: "Fraunces", serif;
}

.container .text-box h2 span {
  padding: 0 15px;
  background-color: #000;
  color: #fff;
}

.container .text-box p {
  font-size: 1.1rem;
  line-height: 150%;
  margin: 2rem 0;
}

.container .text-box a {
  display: inline-block;
  padding: 20px 50px;
  border: 3px #000 solid;
  color: #000;
    font-size: 1.1rem;
}

.container .text-box a:hover {
  background-color: #000;
  color: #fff;
}


/* Shapes */
.shape {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: circle(60% at right);
  transition: all 0.5s ease-in;
  background-color: #e7e268;
}


/* Footer */
footer {
  width: 100%;
  position: fixed;
  z-index: 101;
  bottom: 0;
  left: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}


/* Credit Text */
footer .credit {
  text-align: right;
  color: #000;
  font-size: 0.9rem;
}


/* -----Responsive----- */
@media (max-width: 950px) {
  /* Header */
  header {
    flex-direction: column;
    padding: 20px 50px;
  }

  header .logo {
    margin-bottom: 10px;
  }

  /* Container */
  .container {
    flex-direction: column;
  }

  .container .text-box {
    width: 100%;
    max-width: 550px;
    text-align: center;
  }


  /* Footer */
  footer {
    position: relative;
  }
}

@media (max-width: 470px) {
 
  /* Container */
  .container .text-box h2 {
    font-size: 3rem;
  }

}
