@import url(https://fonts.googleapis.com/css?family=Bungee);

html {
    position: relative;
    min-height: 100%;
    background-color: rgb(30, 39, 50);
    color: #fff;
}
body {
    background-color: rgb(30, 39, 50);
    color: #fff;
}
.break-word {
    word-wrap: break-word;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}
.bold {
    font-weight: bold;
}

#howto {
    display: none;
}

textarea.form-control {
    background-color: rgb(30, 39, 50);
    color: white;
}
textarea.form-control:focus {
    background-color: rgb(30, 39, 50);
    color: white;
}

.container {
    margin-bottom: 10px;
    background-color: rgb(30, 39, 50);
}
footer {
    text-align: center;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
}

a {
    color: darkorange;
}
a:hover {
    color: orange;
}

/*****************/
#btnSubmit {
    background-color: orange;
    color: white;
    border: none;
    font-size: 20px;
    padding: 10px;
    width: 150px;
    height: 50px;
    cursor: pointer;
    font-weight: bold;
}

#howto_btn {
    background-color: orange;
    color: white;
    border: none;
    font-size: 20px;
    width: 300px;
    height: 40px;
    cursor: pointer;
    font-weight: bold;
}

/***********LOADING***********/
/*https://blog.logrocket.com/animated-page-loaders-css/*/
.body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 20px;
    margin: 0;
}
.clock-loader {
    --primary-color: #137498;
    --clock-color: var(--primary-color);
    --clock-width: 4rem;
    --clock-radius: calc(var(--clock-width) / 2);
    --clock-minute-length: calc(var(--clock-width) * 0.4);
    --clock-hour-length: calc(var(--clock-width) * 0.2);
    --clock-thickness: 0.3rem;

    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: var(--clock-width);
    height: var(--clock-width);
    border: 3px solid var(--clock-color);
    border-radius: 50%;

    &::before,
    &::after {
        position: absolute;
        content: "";
        top: calc(var(--clock-radius) * 0.25);
        width: var(--clock-thickness);
        background: var(--clock-color);
        border-radius: 20px;
        transform-origin: center calc(100% - calc(var(--clock-thickness) / 2));
        animation: spin infinite linear;
    }

    &::before {
        height: var(--clock-minute-length);
        animation-duration: 2s;
    }

    &::after {
        top: calc(var(--clock-radius) * 0.25 + var(--clock-hour-length));
        height: var(--clock-hour-length);
        animation-duration: 20s;
    }
}

@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}
.load {
    margin: 50px;
    font-family: 'Bungee', serif;
    color: hsl(0, 0%, 100%);
    font-size: 1rem;
    display: none;
}