* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: #f2f2f2;
  font-family: "Ubuntu", sans-serif;
  height: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0 auto;
  width: 1260px;
  background-image: repeating-linear-gradient(
    to right,
    #e1c5c5,
    #e1c5c5,
    58px,
    transparent 50px,
    transparent 100px
  );
  background-repeat: repeat;
  background-size: auto;
  z-index: 0;
}

h2.filled,
span.filled,
a.filled {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #171717;
  font-weight: bold;
  z-index: 1;
}
h2.filled::after,
span.filled::after,
a.filled::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  width: 100%;
  height: 0.6em;
  background-color: #ffe871;
  border-radius: 2px;
  z-index: -1;
  opacity: 0.4;
  transform: scaleX(1);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
h2.filled:hover::after,
span.filled:hover::after,
a.filled:hover::after {
  opacity: 0.6;
  background-color: #c5ae3b;
  bottom: -0.2em;
}

a.button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: bold;
  background: black;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  transition: transform 0.2s ease;
}
a.button::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  border: 2px solid black;
  z-index: -1;
  border-radius: 4px;
  transition: all 0.2s ease;
}
a.button:hover {
  transform: translate(-6px, -6px);
}

.disable-text {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: #b7b4b9;
  max-width: fit-content;
  display: inline-block;
}

.text {
  font-weight: 400;
  color: #2e2e2e;
}

.bg-opacity {
  background: rgba(240, 230, 191, 0.4);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  position: relative;
}
header a.logo {
  font-weight: 700;
  font-size: 26px;
  color: #2e2e2e;
  text-decoration: none;
}
header .menu {
  display: flex;
  gap: 20px;
  list-style-type: none;
}
header .menu a {
  text-decoration: none;
  color: #171717;
  font-weight: bolder;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}

footer {
  padding: 50px 0;
}

/*work DETAIL*/
.work-detail {
  margin: 0 auto;
}
.work-detail .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.work-detail .content .text {
  width: 50%;
  padding: 50px 0;
}
.work-detail .content a {
  margin-bottom: 50px;
}
.work-detail .content .work-image {
  margin-bottom: 50px;
  max-width: fit-content;
}
.work-detail .content .work-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/*Works page*/

/*contact page*/
.contact-page {
  width: 100%;
}
.contact-page .contact-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}
.contact-page .contact-title h2 {
  padding: 0;
}
.contact-page .contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.contact-page .contact-content .left {
  flex: 1;
}
.contact-page .contact-content .left h1 {
  margin-bottom: 20px;
}
.contact-page .contact-content .left .contact-text {
  width: 75%;
  line-height: 1.5rem;
}
.contact-page .contact-content .right {
  flex: 1;
}
