@charset "utf-8";

body{
    width: 100%;
    overflow-x: hidden;
    position: relative;
}
/* header ************************************/
header{
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
.header-inner{
    width: 1440px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hcg-logo{
    display: block;
    height: 26px;
}
.hcg-logo img{
    object-fit: cover;
    height: 100%;
}
nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.header-inner .register-btn{
    display: inline-block;
    color: #0d80f2;
    font-weight: 600;
    border-radius: 40px;
    padding: 10px 20px;
    border: 2px solid #0d80f2;
    transition: .3s;
}
.header-inner .register-btn:hover{
    background-color: #0d80f2;
    color: #fff;
}
.mob-nav{
    display: none;
}
/* main ************************************/
main{
    width: 100%;
    overflow-x: hidden;
}
/* hero ************************************/
#hero{
    background-color: #000;
    width: 100%;
    height: 110vh;
    position: relative;
}
.hero-bg{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: right;
    position: relative;
    overflow: hidden;
}
.hero-video{
    height: 120%;
    opacity: 0.7;
    pointer-events: none;
}
.hero-bg .noise{
    position: absolute;
    width: 100%;
    mix-blend-mode: multiply;
}
/* hero-inner */
.hero-inner{
    width: 1440px;
    height: 100%;
    color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.hero-inner .content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16vh;
    /* border-bottom: 2px solid #1b1f28; */

}
/* hero left */
.hero-inner .left .title{
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 16px;
}
.hero-inner h1{
    font-size: 84px;
    font-weight: 600;
    margin-bottom: 32px;
}
.hero-inner .desc{
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 48px;
    text-align: left;
    color: #ddd;
}
.hero-inner .desc span{
    display: block;
}
.hero-inner .desc .gra{
    font-weight: 600;
    display: block;
    /* 그라데이션 */
    background: linear-gradient(
        to right,#c2e0ff, #538cec, #538cec
    );
    /* 텍스트에만 그라데이션 적용 */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
/* btn */
.hero-inner .buttons {
    display: flex;
    gap: 40px;
}
.hero-inner .buttons a {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    padding: 20px 0;
    width: 220px;
    text-align: center;
    border-radius: 4px;
}
.hero-inner .buttons {
    display: flex;
    gap: 20px;
}
.hero-inner .buttons a {
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    padding: 20px 0;
    width: 220px;
    text-align: center;
    border-radius: 4px;
    transition: .3s;
}
.hero-inner .buttons .register-btn {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: none;
    background: #000;

    color: #fff;

    transition: color 0.3s ease;
}
/* 움직이는 그라데이션 */
.hero-inner .buttons .register-btn::before {
    content: "";
    position: absolute;
    z-index: -2;
    width: 200%;
    height: 300%;
    background: conic-gradient(
        transparent 0deg,
        #3248cd 200deg,
        #7876ff 270deg,
        #dadadb 300deg,
        #16cbaf 330deg,
        transparent 360deg
    );
    animation: borderRotate 3s linear infinite;
}
/* 버튼 안쪽 */
.hero-inner .buttons .register-btn::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 2px;
    background: #000;
}
.hero-inner .buttons .register-btn {
    isolation: isolate;
}
/* 회전 */
@keyframes borderRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.hero-inner .buttons .register-btn:hover {
    color: #538cec;
}
.hero-inner .buttons .save-btn {
    border: 1px solid #ddd;
    background-color: #11141a;
}
.hero-inner .buttons .save-btn:hover {
    background-color: #1a1f28;
}
/* hero right */
.hero-inner .right ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 48px;
    width: 240px;
    background-color: #1a1f2834;
    padding: 40px 24px;
    border-radius: 10px;
    border: 1px solid #1a1f28;
    box-shadow: 0 0 20px #ffffff69;
    transition: .3s;
}
.hero-inner .right li{
    width: 100%;
    text-align: center;
}
.hero-inner .right .label{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}
.hero-inner .right .cont{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}
/* d_day */
.d_day{
    width: 100%;
}
.d_day .row{
    display: flex;
    justify-content: center;
    align-items: center;
}
.d_day .row .text-center{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 10%;
}
.d_day .row .box_c{
    width: 100%;
    font-size: 60px;
    font-weight: 500;
}
.d_day .row .label{
    font-weight: 300;
    margin-top: 12px;
}
.d_day .row span{
    font-size: 40px;
    padding-bottom: 32px;
}
/* greeting ************************************/
h3{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 44px;
}
h6{
    color: #538cec;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}
p.desc{
    font-size: 18px;
    line-height: 140%;
    color: #555;
    text-align: center;
}
#greeting{
    width: 100%;
    background-color: #111;
    overflow: hidden;
    position: relative;
}
.greeting-inner{
    padding: 120px 0;
    position: relative;
}
.greeting-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: soft-light;
    pointer-events: none;
}
.greeting-grid-glow{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(
        circle 180px at var(--mouse-x) var(--mouse-y),
        #fff 0%,
        rgba(255,255,255,0.8) 30%,
        rgba(255,255,255,0.3) 60%,
        transparent 100%
    );
    mask-image: radial-gradient(
        circle 180px at var(--mouse-x) var(--mouse-y),
        #fff 0%,
        rgba(255,255,255,0.8) 30%,
        rgba(255,255,255,0.3) 60%,
        transparent 100%
    );    
    opacity: 0.8;
    mix-blend-mode: screen;
    filter: brightness(2.2);
    will-change: mask-position;
}
.greeting-inner .text-box{
    text-align: center;
    color: #fff;
    line-height: 150%;
    position: relative;
    z-index: 2;
}
.greeting-inner h3{
    margin-bottom: 36px;
}
.greeting-inner .text-box p{
    margin-bottom: 36px;
    font-size: 18px;
    font-weight: 300;
}
.greeting-inner .text-box p span{
    font-weight: 600;
}
/* why ************************************/
#why{
    width: 100%;
    background-color: #f6f7f9;
}
.why-inner{
    padding: 120px 0;
    width: 1440px;
    margin: auto;
}
.why-inner .box-wrap{
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}
.why-inner .box-wrap li{
    width: calc((100% - 60px) / 4);
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    padding: 40px 32px;
    background-color: #000;
    transition: .5s;
}
.why-inner .box-wrap li .bg{
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .6;
    pointer-events: none;
}
.why-inner .box-wrap li:hover .bg{
    opacity: 0.3;
}
.why-inner .box-wrap li.one .bg{transform: translate(-30%, -50%);}
.why-inner .box-wrap li.two .bg{transform: translate(-55%, -55%);}
.why-inner .box-wrap li.three .bg{transform: translate(-60%, -40%);}
.why-inner .box-wrap li.four .bg{transform: translate(-70%, -30%);}
.why-inner .box-wrap li p{
    position: relative;
    z-index: 2;
    color: #fff;
}
.why-inner .box-wrap li .title{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: .3s;
    line-height: 130%;
}
.why-inner .box-wrap li:hover .title{
    color: #538cec;
}
.why-inner .box-wrap li .desc{
    color: #ddd;
    text-align: left;
}
.why-inner .box-wrap li .desc span{
    font-weight: 600;
}
/* topic ************************************/
#topics{
    width: 100%;
    background-color: #fff;
}
.topics-inner{
    width: 1440px;
    margin: auto;
    padding: 120px 0;
}
.topics-inner h3{
    margin-bottom: 80px;
}
.topics-inner .box-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.topics-inner .box-wrap li{
    width: calc(50% - 10px);
    background-color: #1a1f28;
    border-radius: 10px;
    padding: 40px 32px 60px;
    position: relative;
}
.topics-inner .title{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    transition: .3s;
}
.topics-inner .subtitle{
    font-size: 18px;
    font-weight: 600;
    color: #95c6fa;
    margin-bottom: 20px;
}
.topics-inner .desc{
    color: #ddd;
    font-size: 15px;
    text-align: left;
}
.topics-inner .category{
    display: flex;
    justify-content: left;
    gap: 12px;
    position: absolute;
    left: 30px;
    bottom: 20px;
}
.topics-inner .category li{
    width: auto;
    padding: 2px 4px;
    color: #538cec;
    display: inline-block;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 2px;
}
/* agenda ************************************/
#agenda{
    width: 100%;
    overflow-x: hidden;
    background: linear-gradient(to right, #152121, #111, #060c22, #1a1544);
}
.agenda-inner{
    width: 1440px;
    margin: auto;
    padding-top: 120px;
}
.agenda-inner h3{
    color: #fff;
}
.agenda-wrap{
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    color: #fff;
}
.agenda-wrap .sort{
    background: linear-gradient(to right,#3b92ef8f, #6e6ef88b);
    font-size: 18px;
    color: #fff;
}
.agenda-wrap li{
    display: flex;
    align-items: center;
}
.agenda-wrap li:nth-child(even){
    background-color: rgba(255, 255, 255, .1);
}
.agenda-wrap .sort .time{
    font-size: 18px;
    color: #fff;
}
.agenda-wrap .time{
    width: 240px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
}
.session-wrap{
    display: flex;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
    width: calc(100% - 240px);
    justify-content: space-between;
    padding: 20px 20px 20px;
}
.session-wrap .session{
    line-height: 130%;
    font-size: 18px;
}
.session-wrap .session .bold{
    font-weight: 600;
}
.session-wrap .session .bl{
    color: #cde0ff;
    margin-left: 8px;
}
.agenda-wrap .sort .speaker{
    font-size: 18px;
    color: #fff;
}
.session-wrap .speaker{
    text-align: center;
    line-height: 140%;
    color: #538cec;
    width: 20%;
    font-size: 18px;
}

.session-wrap .desc{
    width: 100%;
    background-color: rgba(83, 140, 235, 0.2);
    padding: 16px;
    line-height: 140%;
    margin-top: 20px;
}
/* speaker ************************************/
#speaker{
    width: 100%;
}
.speaker-inner{
    width: 1440px;
    margin: auto;
    padding: 160px 0 120px;
}
.speaker-inner h3{
    color: #fff;
    margin-bottom: 80px;
}
.speaker-slider{
    width: 100%;
}
.speaker-wrap{
    display: flex;
    justify-content: center;
    gap: 36px;
}
.speaker-wrap li{
    width: 140px;
    position: relative;
}
.speaker-wrap .img-round{
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
}
.speaker-wrap .guest .img-round{
    border: 3px solid #538cec;
}
.speaker-wrap .img-round img{
    width: 100%;
    object-fit: cover;
}
.speaker-wrap .name{
    margin-top: 18px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    width: 100%;
    line-height: 130%;
}
/* 이름 옆 채널 배지 (HCG 추가 — 납품 원본에 없음).
   궤도 님 카드의 별 아이콘·파란 보더를 걷어내고 대신 넣었다. 갱신본 반입 시 재적용할 것. */
.speaker-wrap .name-badge{
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 6px;
    vertical-align: -4px;
}
.speaker-wrap .star{
    position: absolute;
    top: 0px;
    left: 10px;
    object-fit: cover;
    width: 12px;
}
.speaker-wrap .company{
    color: #538cec;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin-top: 8px;
    line-height: 1.3;
}
/* solution ************************************/
#solution{
    width: 100%;
    background-color: #fff;
    overflow-x: hidden;
}
.solution-inner{
    width: 100%;
    margin: auto;
    padding-top: 80px;
}
.solution-inner h6 svg{
    width: 160px;
    height: 42px;
}
.solution-box{
    margin: 80px auto 0;
    width: 1440px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 54px 0;
}
.solution-box img{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 1;
    top: 0;
    left: 0;
}
.solution-box .title{
    position: relative;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 30px;
    z-index: 2;
}
.solution-box .title span{
    color: #0d80f2;
}
.solution-box .cont{
    position: relative;
    font-weight: 400;
    font-size: 18px;
    z-index: 2;
    line-height: 140%;
}
/* agent */
.agent-wrap{
    width: 100%;
    margin-top: 80px;
}
.agent-wrap .title{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 44px;
}
.agent-box{
    display: flex;
}
.agent-box li{
    width: calc(100% / 5);
    overflow: hidden;
    position: relative;
    padding: 80px 40px;
}
.agent-box li img{
    width: 101%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.agent-box .bg{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    transition: .3s;
}
.agent-box li:hover .bg{
    background-color: rgba(0, 0, 0, 0.85);
}
.agent-box li:nth-child(even) .bg{
    background-color: rgba(10, 15, 38, 0.7);
}
.agent-box li:nth-child(even):hover .bg{
    background-color: rgba(10, 15, 38, 0.85);
}
.agent-box .text-wrap{
    width: 100%;
    color: #fff;
    position: relative;
    z-index: 3;
    text-align: center;
}
.agent-box .title{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.agent-box .cont{
    line-height: 140%;
}
/* hr-inner */
.hr-inner{
    width: 100%;
    background: linear-gradient(to bottom, #d1e2ff, #fff, #fff);
}
.hr-inner .inner {
    width: 1440px;
    margin: 0 auto;
    top: 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.hr-inner .title{
    width: 50%;
    padding: 120px 0;
}
.hr-inner .title h3{
    text-align: left;
    margin-bottom: 40px;
}
.hr-inner .title h3 span{
    color: #538cec;
    display: block;
    line-height: 130%;
}
.hr-inner .title p{
    font-size: 18px;
    color: #555;
    line-height: 140%;
}
.hr-inner .title p span{
    font-weight: 600;
}
.hr-list {
    width: 50%;
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* 문장 전체 */
.hr-list-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
/* 각각의 문장 */
.hr-list .hr-item {
    width: 100%;
    height: 88px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    color: #999;
    transition:
        color 0.6s ease,
        font-weight 0.6s ease,
        opacity 0.6s ease,
        transform 0.6s ease;
    opacity: 0.35;
    transform: scale(0.95);
}
/* 현재 강조되는 문장 */
.hr-list .hr-item.active {
    opacity: 1;
    color: #111;
    font-weight: 600;
    transform: scale(1);
}
/* banner ************************************/
#banner{
    width: 100%;
    background-color: #000;
    overflow: hidden;
    position: relative;
}
.banner-img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.mouse-light {
    position: absolute;
    width: 1000px;
    height: 450px;
    left: 0;
    top: 0;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(60, 219, 255, 0.18) 0%,
        rgba(70, 227, 255, 0.1) 25%,
        rgba(60, 177, 255, 0.04) 45%,
        transparent 70%
    );
    transform:
        translate(-50%, -50%);
    opacity: 0;
    filter: blur(20px);
    will-change: transform;
    transition: opacity 0.4s ease;
}
.banner-bg{
    position: absolute;
    width: 100%;
    top: -40%;
    left: 20%;
    opacity: .7;
}
.banner-img .noise{
    mix-blend-mode: soft-light;
}
.banner-img .pattern{
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: soft-light;
}
.banner-inner{
    width: 100%;
    padding: 80px 0;
}
.banner-inner .text-wrap{
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 36px;
    position: relative;
}
.banner-inner .text-wrap span{
    font-weight: 600;
}
.banner-inner .register-btn{
    display: inline-block;
    padding: 20px 0;
    width: 220px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
}
.banner-inner .register-btn:hover{
    background-color: rgba(0, 0, 0, .1);
    color: #fff;
}
/* information ************************************/
#information{
    width: 100%;
    background-color: #fff;
}
.info-inner{
    padding: 120px 0;
    width: 1440px;
    margin: auto;
}
.info-box{
    background-color: #f6f7f9;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.info-box .text{
    width: calc(100% - 740px);
    padding-left: 20px;
}
.info-box .event-name{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 130%;
}
.info-box .text ul li{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.info-box .label{
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    padding: 8px 24px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.info-box .cont{
    font-size: 18px;
}
.info-box .map{
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}
.info-box .map iframe{
    height: 320px;
    width: 720px;
}
/* FAQ ************************************/
#faq{
    background-color: #111;
}
.faq-inner{
    width: 1440px;
    margin: auto;
    padding: 120px 0;
}
.faq-inner h3{
    color: #fff;
}
.faq-inner li{
    width: 100%;
    padding: 30px ;
    border-radius: 10px;
    background-color: #222;
    margin-bottom: 20px;
    color: #fff;
}
.faq-inner .q{
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 130%;
}
.faq-inner .last{
    margin: 0;
    font-size: 14px;
    color: gray;
}
.faq-inner .q span{
    color: #538cec;
    font-weight: 700;
    display: inline-flex;
    width: 24px;
}
.faq-inner .a{
    padding-left: 24px;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
}
.faq-inner .a a{
    color: #538cec;
}
/* footer ************************************/
footer{
    background-color: #000;
    width: 100%;
}
.footer-inner{
    width: 1440px;
    padding: 50px 0;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}
/* 푸터 로고 — 사이트 공통 화이트 로고(SVG)로 교체 (HCG 수정).
   ⚠️ flex-shrink: 0 필수 — 부모(.footer-top)가 flex라 기본 shrink:1에 밀려 줄어들고,
      거기에 globals.scss의 img{max-width:100%}가 겹쳐 비율이 깨졌다(132x42 → 59x26).
      width: auto까지 명시해 두 겹으로 막는다. 갱신본 반입 시 재적용할 것. */
.footer-logo{
    display: block;
    flex-shrink: 0;
    height: 26px;
}
.footer-logo img{
    width: auto;
    height: 100%;
    max-width: none;
}
.footer-body{
    color: #ddd;
}
.footer-top{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    line-height: 160%;
}
.footer-top .company{
    color: #fff;
    margin-right: 20px;
}
.footer-top a{
    transition: .3s;
}
.footer-top a:hover{
    color: #fff;
}
.footer-top .place{
    padding-right: 16px;
    margin-right: 16px;
    border-right: 1px solid #555;
}
.footer-address{
    display: flex;
    flex-wrap: wrap;
    line-height: 140%;
    color: #ddd;
}
.footer-address div{
    width: 100%;
    margin-bottom: 10px;
}
.footer-address div:last-child{
    margin: 0;
}

.footer-address .text{
    display: flex;
    gap: 10px;
}
.footer-address .biz{
    display: flex;
}
.footer-address .biz span{
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #555;
}
.footer-address .biz span:last-child{
    border: 0;
    padding: 0;
    margin: 0;
}
/* top-btn */
.top-btn {
    z-index: 99;
    position: fixed;
    right: 3%;
    bottom: 5%;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: rgba(255,255,255,1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.top-btn.show {
    opacity: 1;
    visibility: visible;
}
.top-btn a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}
