.circle-box {
    width: 100vw;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#circle {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: red;
}

.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bolder;
    height: 15vh;
    width: 100vw;
    color: #ffffff;
    transition: .5s;
    user-select: none;
}

.dot {
    user-select: none;
    font-size: 30px;
    padding: 0 3px;
}

body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    background: #1e1e1e;
}