.ui.form > * {
    margin-top: 10px;
}

canvas {
    display: block;
    width: 100%;
}

.cv,
.title {
    top: 0;
    left: 0;
}

.cv {
    position: absolute;
    background: radial-gradient(circle, #fcdabb, #f7c386);
    z-index: 1;
}

.loading-screen {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.loader {
    font-size: 10px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 11em;
    height: 11em;
    border-radius: 50%;
    background: #ffffff;
    background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    position: absolute;
    top: calc(50% - 11em);
    left: calc(50% - 11em);
    -webkit-animation: loading 1.4s infinite ease;
    animation: loading 1.4s infinite ease;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader:before {
    width: 50%;
    height: 50%;
    background: #ffffff;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.loader:after {
    background: rgba(0, 0, 0, 1);
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wait-text {
    -webkit-animation: blinking 1.4s infinite ease;
    position: absolute;
    color: white;
    font-size: 2em;
    display: inline-block;
    top: calc(50% + 125px);
    left: calc(50% - 125px);
    font-family: 'Roboto Slab', serif;
}

.invisible {
    display: none;
    visibility: hidden;
}

@-webkit-keyframes blinking {
    0% {
        opacity: 100;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}