html,
body,
h1,
p {
    margin: 0;
    padding: 0;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

span.dot {
    color: rgb(255, 187, 0);
}

.contents {
    height: 100vh;
    width: 100vw;
    background-color: rgb(72, 189, 175);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

#wip-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    background-color: rgb(255, 255, 255);
    color: rgb(45, 124, 115);
    border-radius: 15px;
}

#wip-btn:hover {
    background-color: rgb(216, 244, 252);
    color: rgb(52, 144, 134);
    cursor: not-allowed;
}

#pointer {
    top: -100px;
    position: fixed;
    height: 10px;
    width: 10px;
    border: 0px none;
    border-radius: 5px;
    background-color: rgb(246, 153, 66);
    transition: all .1s ease;
}

#text {
    height: auto;
    color: rgb(254, 250, 242);
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
}

#text::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 15px;
    margin-left: 5px;
    margin-top: 5px;
    background-color: rgb(169, 244, 229);
    animation: bar-anim .9s infinite;
}

@keyframes bar-anim {
    0% {
        opacity: 0;
    }

    49% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}