body {
    background-color: #560108;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: white;
}

.profile-image {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    align-items: center;
    display: block;
    margin: 0 auto;
}

.blink {
    animation: blink-animation 1s infinite;
    -webkit-animation: blink-animation 1s infinite;
}
@keyframes blink-animation {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
@-webkit-keyframes blink-animation {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

span {
    font-size: 50px;
    color: white;
    align-self: center;
    align-items: center;
}
