@charset "utf-8";

body {
  box-sizing: border-box;
  margin: 0;
}

.full-image {
  position: absolute;
  display: block;
  width: 100%;
  height: 100vh;
  content:"";
  background: url("img/main.jpg") 50% 50% / 100% 100% no-repeat ;
  justify-content: center;
  align-items: center;
}

.full-image::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  left: 10%;
  bottom: 10%;
  background-color: black;
  opacity: 0.3;
  height: 80%;
  width: 80%;
  z-index: 0;
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
}

.title-back {
  display: block;
  margin: 10% 10%;
  position: relative;
}


.title-name {
  text-align: center;
  font-size: 40px;
  font-family: "Anton", sans-serif;
  color: white;
  letter-spacing: 1px;
  position: relative;
  padding-top: 40px;
  margin-bottom: 20px;
}


@media screen and (max-width:400px){
  .title-name {
    font-size: 24px;
  }
}


.title-name p {
  margin: 0 40px;
}

.title-content {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.title-content p {
  margin: 0 20px;
}

.title-detail {
  font-size: 12px;
  color: white;
  letter-spacing: 0.1em;
}

.title-detail p {
  margin: 0 20px;
}

.title-detail a {
 margin: 0 20px;
 color: white;
 text-decoration: none; 
 cursor: pointer;
}

.title-icon {
  font-size: 36px;
  margin: 20px;
}

.title-icon a {
  text-decoration: none;
  cursor: pointer;
}

.insta-color {
  color: orange;
  background: -webkit-linear-gradient(45deg,orange, rgb(255, 0, 170), rgb(89, 0, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}