@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Noto sans JP', sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Roboto' , sans-serif;
    font-weight: 900;
    background: linear-gradient(90deg, #0e3eff, #01aaff);
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    font-size: 60px;
}

main {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}
p {
    font-size: 20px;
    line-height: 2.2;
    font-weight: 900;
}
a {
    background: linear-gradient(90deg, #0e3eff, #01aaff);
    color: #fff;
    text-decoration: none;
    padding: 20px;
    display: block;
    margin-top: 50px;
}

footer {
    background: linear-gradient(90deg, #0e3eff, #01aaff);
    color: #fff;
    margin-top: 80px;
    div {
        padding: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        img {
            height: auto;
            width: 250px;
            margin-bottom: 10px;
            filter: invert(1);
        }
    }
}