body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: radial-gradient(circle, #000428, #004e92);
    overflow: hidden;
    font-family: sans-serif;
}

.con {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.p-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.pro {
    color: white;
    max-width: 400px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
}

.text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
}

.drip {
    position: absolute;
    opacity: 0;
    transform: translateY(-100%);
    animation: drip 4s infinite;
}

@keyframes drip {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateY(80vh);
        /* 画面の80%まで落ちる */
    }

    100% {
        opacity: 0;
        transform: translateY(80vh);
    }
}

@media screen and (max-width: 479px) {
    p {
        font-size: 13px;
    }
}