* {
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;1,300;1,400;1,900&display=swap");

:root {
  --colorOne: #628e75;
  --colorTwo: #1a4855;
  --colorThree: #f9f9f9;
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(to right, #628e75, #1a4855);
  font-family: "Poppins", sans-serif;
  padding: 5px;
  font-size: 24px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  padding: 3rem;
}

nav li:hover {
  transform: scale(1.2);
  cursor: pointer;
}
.menu {
  width: 158px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.content_left {
  width: 500px;
}

h3 {
  font-weight: 400;
  font-size: 28px;
  color: var(--colorThree);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h3,
h2 {
  margin-bottom: 2.5rem;
}

.maintext_style {
  font-size: 18px;
  color: var(--colorThree);
  line-height: 1.8em;
  letter-spacing: 0.4;
}

h2 {
  font-size: 68px;
  font-weight: 900;
  color: var(--colorThree);
}

.content_right {
  height: auto;
  width: 500px;
  margin-left: 80px;
}

.content_right img {
  width: 500px;
}

.button_style {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.2rem;
  width: 255px;
  background: transparent;
  border: 4px solid #658e76;
  color: #f9f9f9;
  padding: 16px 40px;
  text-transform: uppercase;
  transform: skew(-24deg);
  font-weight: 600;
}

span {
  transform: skew(24deg);
  width: 0px;
}

button p {
  letter-spacing: 0.05em;
  transform: skew(24deg);
  width: 200px;
}

.btn_left {
  background-color: #658e76;
  cursor: pointer;
  margin-right: 18px;
}

.btn_right {
  margin-left: 18px;
}

.btn_right:hover {
  cursor: pointer;
  background-color: #658e76;
}

@media (max-width: 1150px) {
  h3 {
    font-size: 24px;
  }

  h2 {
    font-size: 62px;
  }

  h3,
  h2 {
    margin-bottom: 2rem;
  }

  .content_right {
    margin-left: 10px;
  }
}