.box-header-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.box-header-iframe iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	border-style: inset;
	border-color: initial;
	border-image: initial;
	z-index: 1;
}

.box-header-back {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.box-header-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
	z-index: 999;
}

.box-header-title {
	font-size: 2rem;
	letter-spacing: 0.8rem;
	font-style: italic;
	cursor: default;
	
	color: white;
}

.box-header-content {
	font-size: 1rem;
	letter-spacing: 0.4rem;
	margin: 3vh auto 5vh;
	font-style: italic;
	cursor: default;
	max-width: 80vw;
	color: transparent;
	background-clip: text;
	background-image: linear-gradient(to right, #ffecd2, #ffecd2, #fcb69f, #94e1b6, #72c2f8, #94bfff, #d083ec, #d083ec);
}

#box-header-search-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px; /* 6px */
    border: 4px double white;
    padding: 12px 50px;
    font-weight: bold;
    color: white;
	letter-spacing: 2px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: border-color 0.3s, color 0.3s, background-color 0.3s;
    cursor: pointer;
    background-color: transparent;
}

#box-header-search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 126, 95, 0.8), rgba(251, 180, 123, 0.8), rgba(255, 204, 102, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease-out;
    z-index: -1;
	border-radius: 6px;
}

#box-header-search-btn:hover {
    border-color: transparent;
    color: white;
}

#box-header-search-btn:hover::before {
    opacity: 1;
}