* {

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


html {
    overflow-x: hidden;
    overflow-y: auto;
    font-feature-settings: "palt";
}

#header {
    position: fixed;
    top: 0;
    z-index: 99999999;
}

.fadeUpTrigger {
    opacity: 0;
}

body {
    width: 100vw;
    overflow-x: hidden;
}

#load_animation {
    position: fixed;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background-color: #262626;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#load_animation .loading_gif {
    padding: 50px 0;
}

#load_animation .loading_gif img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: none;
}




.index-back-color {
    background-color: #F2F2F2;

    content: '';
    display: flex;
    /* top: 34%; */
    /* left: 50px; */
    width: 100%;
    /* min-height: 470px; */
    height: 2800px;
    position: absolute;
    z-index: -1;
}



.civid-content-h1 {
    font-family: heisei-mincho-std, serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    letter-spacing: 0.45rem;
    font-size: 1.13rem;
    color: #2f2f2f;
    border-bottom: solid #505050 2px;
    padding-bottom: 6px;

}

.le-mail-adress {
    color: #2fa89a;
}

.le-mail-adress:hover {
    color: #79d2db;
    transition: 0.25s;
}




.covid-content {
    text-align: center;
    letter-spacing: 0.4rem;
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.01rem;
    line-height: 1.4rem;
    color: #2f2f2f;


}

.covid-contents {
    border: solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #6ccec2 50%, #A8DEE3 50%);
    padding: 20px 80px;
    max-width: 1350px;
    margin: 0 auto;
}


.covid-jump-box {
    text-align: center;
    /* padding-right: 3vw; */
}

.news-jump-box {
    margin-top: 30px;
    padding-bottom: 30px;

}

.news-jump-box {
    text-align: center;
}

.covid-contents-white {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 40px;
}



.covid_how-to-enter-h1 {
    font-family: heisei-mincho-std, serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    letter-spacing: 0.45rem;
    font-size: 1.13rem;
    color: #2f2f2f;
    border-bottom: solid #505050 2px;
    padding-bottom: 6px;

}

.covid_how-to-enter-contents {
    border: solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #faf2aa 50%, #6ccec2 50%);
    padding: 20px 80px;
    max-width: 1350px;
    margin: 0 auto;



}

.how-to-enter_white {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 40px;
}

.covid_how-to-enter-content {
    text-align: center;
    letter-spacing: 0.4rem;
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.01rem;
    line-height: 1.4rem;
    color: #2f2f2f;


}

.covid_how-to-enter-jump-box {
    text-align: center;
    /* padding-right: 3vw; */
}


.btnlinestretches {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    color: #333;
    border: 1px solid #333;
    padding: 5px 40px;
    display: inline-block;
    text-decoration: none;
    outline: none;
    /*アニメーションの指定*/
    transition: all 0.3s ease-in-out;
    font-family: ten-mincho, serif;
    font-weight: 800;
    font-style: normal;
    background-color: white;
    font-size: 1.05rem;


}

/*hoverした際の背景の形状*/
.btnlinestretches:hover {
    background: #2FA89A;
    color: #fff;
    border-color: transparent;
}

/*線の設定*/
.btnlinestretches::before,
.btnlinestretches::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    border: solid #333;
    width: 10px;
    height: 10px;
    /*アニメーションの指定*/
    transition: all 0.3s ease-in-out;
}

/*線の位置と形状*/
.btnlinestretches::before {
    top: -6px;
    left: -6px;
    border-width: 1px 0 0 1px;
}

/*線の位置と形状*/
.btnlinestretches::after {
    bottom: -6px;
    right: -6px;
    border-width: 0 1px 1px 0;
}

/*hoverした際の線の形状*/
.btnlinestretches:hover::before,
.btnlinestretches:hover::after {
    width: calc(100% + 11px);
    height: calc(100% + 11px);
    border-color: #666;
}



/*スクロールダウン全体の場所*/
.scrolldown4 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    bottom: 5%;
    right: 50%;
    /*矢印の動き1秒かけて永遠にループ*/
    animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
    0% {
        bottom: 1%;
    }

    50% {
        bottom: 3%;
    }

    100% {
        bottom: 1%;
    }
}

/*Scrollテキストの描写*/
.scrolldown4 span {
    /*描画位置*/
    position: absolute;
    left: -20px;
    bottom: 20px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    /*縦書き設定*/
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 3px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
    filter: drop-shadow(3px 3px 2px #F4E767);

}

.scrolldown4:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: 0;
    /*矢印の形状*/
    width: 3px;
    height: 50px;
    background: #eee;
    filter: drop-shadow(3px 3px 2px #F4E767);

}






.info-box-contents {
    width: 80vw;
    margin: 0 auto;
    padding: 5% 9%;
}

.imformation {
    position: relative;
}



.info-box {
    content: '';
    display: flex;
    background-color: #D8EEF1;
    /* top: 34%; */
    /* left: 50px; */
    width: 100%;
    /* min-height: 470px; */
    height: 900px;
    transform: skewY(-3deg);
    position: absolute;
    z-index: -1;
}

.information-heading {
    position: relative;
    padding-top: 60px;
    padding-left: 30px;
    font-size: 2rem;
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;

}

.information-heading span {
    position: relative;
    z-index: 2;
}

.information-heading::before {
    content: attr(data-en);
    position: absolute;
    transform: rotate(-5deg);
    top: -20px;
    left: 0;
    color: #79D2DB;
    font-size: 90px;
    font-family: hummingbird, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: -8px 10px 0px #F4F4F4;
    z-index: -1;
    letter-spacing: 1rem;
}


.information-content {
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    color: #2f2f2f;


}

.information-content table tr td {
    letter-spacing: 0.1rem;
}

.info-img {
    position: relative;
}

.info-flexbox {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;


}

.information-content table tr td:first-child {
    vertical-align: top;
}

.information-content table tr {
    line-height: 2.5rem;
}

.info-img::before {
    content: '';
    /* このプロパティが無いと擬似要素は機能しません、お決まりの呪文です。 */
    display: block;
    /* ブロック要素にします。 */
    position: absolute;
    /* absoluteで上に乗っけます。 */
    top: 0;
    /* 縦横の値を入れるのは基本です。入れないとだめ！っと思っておくほうが今後の為いいです。 */
    left: 0;
    width: 500px;
    height: 100%;
    box-shadow: inset 0 0 0px 8px rgba(255, 255, 255, 0.712);
    border-radius: 5px;
}

@media screen and (max-width:1550px) {
    .info-flexbox {
        flex-direction: column;
    }
}

.index-info-img {
    width: 500px;
    border-radius: 5px;
    z-index: 1;



}

.theme {
    position: relative;
}



.theme-box {
    content: '';
    display: flex;
    background-color: #BBDAD6;
    /* top: 34%; */
    /* left: 50px; */
    width: 100%;
    /* min-height: 470px; */
    height: 1500px;
    transform: skewY(-3deg);
    position: absolute;
    z-index: -1;
    margin-top: 30px;
}

.theme-contents {
    /* padding: 5% 0 5% 0; */
    position: relative;
    z-index: 2;
    top: 50%;
    /* border: solid; */
    padding: 10%;
    margin: 0 auto;


}

.theme-heading {
    position: relative;
    padding-top: 60px;
    padding-left: 60px;
    font-size: 2rem;
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
    margin-left: 18%;
    width: 80vw;
}

.theme-heading span {
    position: relative;
    z-index: 2;
}

.theme-heading::before {
    content: attr(data-en);
    position: absolute;
    transform: rotate(-5deg);
    top: -20px;
    left: 0;
    color: #79D2DB;
    font-size: 90px;
    font-family: hummingbird, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: -8px 10px 0px #F4F4F4;
    z-index: -1;
    letter-spacing: 1rem;

}


.kaisaiwosakebe {
    text-align: center;
    font-size: 4rem;
    font-family: source-han-serif-japanese, serif;
    font-weight: 600;
    font-style: normal;
    color: #2FA89A;
    letter-spacing: 1rem;
    text-shadow: 2px 2px 3px #f5f5f5;
    padding-left: 80px;


}


.theme-content {
    text-align: center;
    font-family: iroha-31nire-stdn, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.3rem;
    line-height: 4rem;
    font-size: 1.3rem;
    width: 80vw;
    text-shadow: 2px 2px 3px #f5f5f5;
    background-image: url(../img/logo.png);
    background-position: center;
    background-size: 500px;
    background-repeat: no-repeat;
    /* background-color: rgba(255, 255, 355, 0.3); */
    margin: 0 auto;
    color: #2f2f2f;



}

.theme-sub {
    text-align: center;
    font-family: dnp-shuei-gothic-kin-std, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    color: #2f2f2f;
}

.theme-content strong {
    position: relative;
}

.theme-content strong::after {
    content: "";
    position: absolute;
    bottom: -0.125rem;
    left: -0.5rem;
    right: -0.5rem;
    height: 0.85rem;
    z-index: -1;
    background-image: url(../img/underline.svg);

    background-repeat: no-repeat;
    background-size: cover;
    color: #2FA89A;
    transform: skewY(-5deg);


}

.theme-content p>strong {
    font-weight: 400;
}

.theme-content p>strong::after {
    bottom: -0.2rem;
    height: 0.5rem;
    left: -0.25rem;
    right: -0.25rem;
}

.theme-content span {
    font-size: 1.6rem;
    /* border-bottom: dotted 4px #79D2DB; */
    position: relative;
    letter-spacing: 1rem;
    font-family: source-han-serif-japanese, serif;
    font-weight: 600;
    font-style: normal;
    /* margin-top: -100px; */
    color: #2FA89A;

}




.wave {
    position: relative;
    height: 10px;
    /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
}

canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}


:root {

    --white: #636363;
    --grey-light: #71D1C5;
    --grey: #71D1C5;
    --black: #9262d1;
    --black-blue: #71D1C5;
    --black-blue-light: #71D1C5;
    --black-blue-light-2: #71D1C5;
    --black-blue-light-3: #71D1C5;
    --black-light: #71D1C5;

}







/* #Progress
================================================== */

.progress-wrap {
    position: fixed;
    right: 4vw;
    bottom: 80px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2.5px rgba(77, 74, 74, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: '\f106';
    font-weight: 900;
    text-align: center;
    line-height: 60px;
    font-size: 28px;
    color: var(--white);
    left: 0;
    top: 0;
    height: 50px;
    width: 60px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;

}

.progress-wrap:hover::after {
    opacity: 0.5;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: '\f106';
    font-weight: 900;
    text-align: center;
    line-height: 46px;
    font-size: 28px;
    opacity: 0;
    /* background-image: linear-gradient(298deg, var(--red), var(--yellow)); */
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 50px;
    width: 60px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--grey);
    stroke-width: 5;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}






/* #footer {
    z-index: 999999;
} */


/*========= waveを描画するエリア設定 ===============*/

.wave {
    position: relative;
    height: 50px;
}

.wave canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    top: 10px;
    z-index: -1;
}





.pickup {
    position: relative;

}

.pickup-head p {
    text-align: center;
    font-size: 3rem;
    font-family: servus-slab, serif;
    font-weight: 600;
    font-style: normal;
    padding: 30px 0 0 0;
    color: #2f2f2f;

}

.pickup-box {
    margin: 0 auto;

}


.pickup-back {

    content: '';
    display: flex;
    background-color: #e9fcff;
    transform: skewY(3deg);

    width: 100%;
    height: 2000px;
    position: absolute;
    z-index: -1;

}







/*==================================================
スライダーのためのcss
===================================*/
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 90%;
    margin: 0 auto;
}

.slider img {
    width: 40vw;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: auto;
    max-width: 600px;
}

.slider .slick-slide {
    transform: scale(0.8);
    /*左右の画像のサイズを80%に*/
    transition: all .5s;
    /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;
    /*透過50%*/
}

.slider .slick-slide.slick-center {
    transform: scale(1);
    /*中央の画像のサイズだけ等倍に*/
    opacity: 1;
    /*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;
    /*矢印の色*/
    border-right: 2px solid #666;
    /*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {
    /*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    /*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    /*ドットボタンのサイズ*/
    height: 8px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #ccc;
    /*ドットボタンの色*/
}

.slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}




.nesw-box-white {
    background-color: rgb(255, 255, 255);
    clip-path: polygon(9% 0, 100% 0, 100% 91%, 91% 100%, 0 100%, 0 9%);
    padding: 0 9%;
    /* opacity: 0.8; */
}

.news {
    position: relative;
}

.news-box-contents {
    width: 80%;
    /* margin: 0 auto; */
    /* padding: 5% 15%; */
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.news-box-back {
    content: '';
    display: flex;
    background-color: #F2F2F2;
    /* left: 50px; */
    width: 100%;
    /* min-height: 470px; */
    height: 1500px;
    clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 85%);
    z-index: -1;
    margin-top: 200px;
    position: relative;
}



.news-box-contents p {
    text-align: center;
    font-size: 3rem;
    font-family: servus-slab, serif;
    font-weight: 600;
    font-style: normal;
    color: #2f2f2f;
    margin-top: 70px;

}


.news-content ul li {
    border-bottom: 1px solid #ccc;
    overflow: hidden;
    padding-bottom: 5px;
    list-style: none;
}

.news-content ul li time {
    padding: 5px 30px;
    font-size: 13px;
    letter-spacing: 3px;
}

.news-content ul li time,
.news-content ul li span {
    display: inline-block;
    vertical-align: middle;
    font-family: ten-mincho, serif;
    font-weight: 600;
    font-style: normal;
}

.news-content ul li span.news-info-o-pun {
    background: #79D2DB;
    color: #2F2F2F;
    letter-spacing: 2px;
    border-radius: 4px;
    font-family: ten-mincho, serif;
    font-weight: 600;
    font-style: normal;
    padding: 0 10px;

}

.news-content ul li span.news-info-kousin {
    background: #F4E767;
    color: #2F2F2F;
    letter-spacing: 2px;
    border-radius: 4px;
    font-family: ten-mincho, serif;
    font-weight: 600;
    font-style: normal;
    padding: 0 10px;
}

.news-content ul li span {
    color: #fff;
    margin-right: 20px;
    font-size: 13px;
    /* width: 80px; */
    text-align: center;
    /* padding: 3px 0; */
}

.news-content ul li div {
    margin-left: 30px;
    color: #2f2f2f;


}

.news-content ul li div a {
    text-decoration: none;
    padding: 3px 0 0 0px;
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
    color: #2FA89A;
    border-bottom: solid 1.2px#2FA89A;
    display: inline-block;
}

.news-content ul li div a:hover {
    text-shadow: 2px 2px 3px #F4E767;
    cursor: pointer;
    text-decoration: none;
}

.news-content ul li div {
    letter-spacing: 0.1rem;
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
    color: #2f2f2f;
    /* text-align: center; */

}

.news-contents-content {
    font-size: 17px;
}

.news-jump-btn {
    margin-bottom: 7px;
    margin-top: 3px;
}

.TextTyping span {
    display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
    content: "|";
    animation: typinganime .8s ease infinite;
}

@keyframes typinganime {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}


.circle {
    position: relative;
    border-radius: 50%;
}



/******************************************************/
/* circle03 */
.border-orange {
    border: 1px solid #2FA89A;
    z-index: -3;
    /* stick this behind the content area */
}

.border-green {
    border: 1px solid #2FA89A;
    z-index: -3;
}

.circle03 {
    /* top: 5%; */
    /* left: 30%; */
    width: 30vw;
    height: 30vw;
    transform-origin: 45% 50%;
    animation: rotateBob 25s linear infinite;
    /* position: relative; */
}

.circle04 {
    width: 40vw;
    height: 40vw;
    transform-origin: 50% 45%;
    animation: rotateBob 50s linear infinite;
    top: 50%;
    right: -45%;
}

.circle03:after {
    position: absolute;
    border-radius: 50%;
    z-index: 10;
    content: "";
    left: calc(50% - 3vw);
    top: calc(0% - 3vw);
    width: 6vw;
    padding-top: 6vw;
    background-color: #F4E767;
    /*   transform-origin: 40% 50%; */
}

.circle04:after {
    position: absolute;
    border-radius: 50%;
    z-index: 10;
    content: "";
    left: calc(0% - 2vw);
    top: calc(50% - 2vw);
    width: 4vw;
    padding-top: 4vw;
    background-color: #79D2DB;

}


@keyframes rotate {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes rotatePath {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes rotatePathInside {
    0% {
        transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
    }

    100% {
        transform: translateX(-50%) translateY(-50%) rotateZ(360deg);
    }
}

@keyframes rotateBob {
    0% {
        transform: translateY(0) rotateZ(0deg);
    }

    50% {
        transform: translateY(-3vh) rotateZ(180deg);
    }

    100% {
        transform: translateY(0) rotateZ(360deg);
    }
}

@media only screen and (max-width: 600px) {
    .content {
        margin: 0;
        grid-template-columns: 1fr;
        grid-template-rows: 5fr 30px 6fr;

        min-height: 80vh;
        max-height: 100vh;
    }

    .content .intro {
        grid-row: 3;
    }

    .content .image {
        grid-row: 1;
        background-position: 0% 20%;
    }

    .content nav {
        grid-row: 2;
    }

    body {
        grid-auto-rows: 1fr;
        align-items: start;
    }
}

/*   
  .meidaisai-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: white;
    overflow: hidden;
}

.meidaisai-container p {
    background: black;
    color: white;
    margin: 0;
    position: absolute;
}

.meidaisai-container p.en {
    font-size: 8rem;
    text-transform: capitalize;
    font-family: abril-titling-condensed,serif;
    font-weight: 400;
    font-style: normal;
    padding: 10px 20px;
    padding-left: 100px;
    top: 30px;
    left: 0;
}



.bg {
    width: 60vw;
    height: 400vh;
    background-color: white;
    mix-blend-mode: difference;
    transform: rotate(45deg);
    position: absolute;
    top: -100vh;
} */

/* 
#sliderindex {
    padding-top: 70px;

    width: 100%;
    height: 100vh;
    overflow-x: hidden;
} */
#sliderindex {
    padding-top: 70px;

    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}
/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*
    


/*========= レイアウトのためのCSS ===============*/



.wrapper-slideshow {
    position: relative;
    /* margin-top: 70px; */

}


.logo-name-theme-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    width: 50%;
    filter: drop-shadow(3px 3px 1px #ffffff);

}