.login-title {
    font-family: "bahnschrift semibold";
    font-size: 3cm;
    position: relative;
    top: 30%;
}

.login-text {
    font-family: "bahnschrift semibold";
    position: relative;
}

.login-input {
    font-family: "bahnschrift semibold";
    position: relative;
    text-align: center;
}

.login-error {
    color: red;
    text-decoration: underline;
    font-family: "bahnschrift semibold";
    font-size: 0.5cm;
}

.submit-input {
    font-family: "bahnschrift semibold";
    position: relative;
    text-align: center;
}

.main_div {
    text-align: center;
    position: center, absolute;
    top: 0;
}

.colorchange {
    animation-duration: 60s;
    animation-name: huerotation;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes huerotation {
    0% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(360deg);
    }

    100% {
        filter: hue-rotate(0deg)
    }
}

.float {
    animation-duration: 5s;
    animation-name: floating;
    animation-iteration-count: infinite;
    animation-timing-function: alternate;
}

@keyframes floating {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

.rotation {
    animation-duration: 5s;
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.janky {
    animation-duration: 5s;
    animation-name: jank;
    animation-iteration-count: infinite;
    animation-timing-function: alternate;
}

@keyframes jank {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@media only screen and (max-width: 768px) {
    .redpad {
        padding-left: 10 !important;
        padding-right: 10 !important;
    }

    .redwidth {
        width: 80px;
    }

    .copyright {
        padding-left: 20 !important;
        padding-right: 20 !important;
    }

    .phonecenter {
        margin: auto;
    }
}

.biggerfont {
    font-size: 16px;
}


/*the container must be positioned relative:*/

.autocomplete {
    position: relative;
    display: inline-block;
}

input {
    border: 1px solid transparent;
    background-color: #ffffff;
    padding: 10px;
    font-size: 16px;
}

input[type=text] {
    background-color: #ffffff;
    width: 100%;
}

input[type=submit] {
    background-color: DodgerBlue;
    color: #fff;
    cursor: pointer;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}


/*when hovering an item:*/

.autocomplete-items div:hover {
    background-color: #e9e9e9;
}


/*when navigating through the items using the arrow keys:*/

.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.noverticalpadding {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.intextbutton {
    padding-top: 3px;
    padding-bottom: 3px;
    margin: 3px;
}

@keyframes blacktowhiteanim {
    100% {
        -webkit-filter: invert(100%);
        filter: invert(100%);
    }

    75% {
        -webkit-filter: invert(75%);
        filter: invert(75%);
    }

    50% {
        -webkit-filter: invert(50%);
        filter: invert(50%);
    }

    25% {
        -webkit-filter: invert(25%);
        filter: invert(25%);
    }

    0% {
        -webkit-filter: invert(0%);
        filter: invert(0%);
    }
}

.deletebutton:hover>.blacktowhite {
    animation-duration: 150ms;
    animation-name: blacktowhiteanim;
    animation-fill-mode: forwards;
}

.hoverrotation:hover {
    animation-duration: 5s;
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@media only screen and (min-width: 768px) {
    .titlecenter {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}