@media screen and (min-width: 300px) and (max-width: 600px) {
    body {
        background: url(../img/bg_mobile.png) no-repeat fixed bottom;
    }
}

@media screen and (min-width: 600px) {
    body {
        background: url(../img/bg_pc.png) no-repeat fixed center;
    }
}

body {
    color: #e5e4e0;
}

.title {
    text-align: center;
}

.icon {
    display: block;
    box-shadow: 3px 3px 45px #0000009f;
    border-radius: 50%;
    width: 75px;

    @media screen and (min-width: 300px) and (max-width: 600px) {
        margin: 450px auto 15px auto;
    }

    @media screen and (min-width: 600px) {
        margin: 15px auto;
    }
}

.text,
.footer {
    background-color: #33333345;
    box-shadow: 3px 3px 45px #0000009f;
    backdrop-filter: blur(24px);
    border-radius: 16px;
    width: 90%;
    margin: 15px auto;
    padding: 7.5px;
}