
/* Made by Yoshihito Akinaga in 2024. Unauthorized copying or modification is prohibited.*/
div.section {
    background: rgba(248, 245, 245, 0.4);
    backdrop-filter: blur( 5.5px );
    -webkit-backdrop-filter: blur( 5.5px );
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 0 20px 40px; /*要素の内側に対しての空白を上・左右・下で指定。0はデフォルト値*/
    /*padding:5%;*/
    height:100vh;
}

body {
    background-image: url(./images/02-top-bg.webp);
    position: relative;
    min-height: 100vh;
    background-size: cover; /*--背景画像のサイズ--*/
    background-attachment: fixed; /*--背景画像の固定--*/
    background-repeat: no-repeat; /*--背景画像の繰り返し--*/
    background-position: center center; /*--背景画像の位置--2つめのcenterは上下用の指定だがデフォルトで中央寄せなので不要*/
}

.h1_style {
    font-family: "Sarpanch", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3.5em;
    color: rgba(0, 0, 0, 0);
    text-shadow: 3px 3px 0 rgb(110, 155, 189);
    -webkit-text-stroke: 1px #dbd7d2;
    text-stroke: 1px #dbd7d2;
    display: grid;
    justify-content: flex-end;
}
