body {
    background: #0c0c0c;
    overflow: hidden;
    font-family: "futura-pt", Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-style: normal;
    color: #f0f0f0;
    width: 100vw;
    height: 100vh;
    
}

.container-name {
    font-size: x-large;
    color: #f0f0f0;
    padding: 1em;
    margin: 0;
    width: fit-content;
}

.container-name:hover {
    text-shadow: 0px 0px 15px #f0f0f0;
    transition: 500ms;
}

.content {
    width: 300px;
    height: 100%;
    margin: auto;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: flex-start;
}

p{
    padding: 0;
    margin: 0;
}

a {
    margin: 0;
    text-decoration: none;
    color: inherit;
}

.loading {
    font-size: 30px;
}

.loading:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4, end) 3s infinite;
    animation: ellipsis steps(4, end) 3s infinite;
    content: "\2026";
    width: 0px;
}

@keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

@-webkit-keyframes ellipsis {
    to {
        width: 1.25em;
    }
}