@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap');

body{
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    color: white;
}

.red{
    color: red;
}
.limegreen{
    color: limegreen;
}

.nav-link{
    cursor: pointer;
}
.nav-link:active,
.nav-link:hover{
    color: cyan !important;
    border-bottom: 2px solid cyan;
    margin: -1px;
}
.nav-link i:active,
.nav-link i:hover{
    color: cyan;
    border-bottom: 2px solid cyan;
    margin: -1px;
}
.bg{
    background: url(../img/server.jpg);
    height: 500px;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
.bg h1,h3{
    text-shadow: 2px 2px 2px #000000;
}
.navbar, .line{
    border-bottom: 1px solid limegreen;
}


.body{
    margin: 0 auto;
    padding: 15px;
    width: 50vw;
    display: grid;
    place-items: center;
    background: #151726;
    font-family: 'Roboto', sans-serif;
    border-radius: 25px;
}
a{
    text-decoration: none !important;
}
.progress-title{
    width: 100%;
    height: auto;
}
.progress-title h3{
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.progress{
    width: 100%;
    height: 10px;
    background: #171b3c;
    border-radius: 20px;
    border:1px solid #000;
    box-shadow: 0 2px 2px #4f4c4c;
    margin-bottom: 40px;
    overflow: visible;
    position: relative;
}
.progress, .progress-bar{
    border-radius: 20px;
    border: 1px solid #000;
    animation: animate-positive 2s;
}
.progress .progress-value {
    width: 65px;
    height: 25px;
    line-height: 25px;
    background: #171b3c;
    font-size: 15px;
    color: #fff;
    border-radius: 0 0 15px 15px;
    border: 1px solid #000;
    border-top: none;
    box-shadow: 0 2px 2px #4f4c4c;
    position: absolute;
    bottom: -25px;
    right: 60px;
}
@-webkit-keyframes animate-positive{
    0%{
        width: 0;
    }
}
@keyframes animate-positive{
    0%{
        width: 0;
    }
}

footer{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    height: auto;
    min-height: 2em;
    background: black;
    margin-top: 15px;
}
footer p{
    color: white;
    margin: 0;
}
.flex-item1{
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
    font-family: 'roboto',sans-serif;
    color: #fff !important; 
}
.flex-item1 p{
    font-family: 'roboto',sans-serif;
    text-decoration: underline;
}
.flex-item1 a{
    color: white;
    text-transform: none;
}
.flex-item2{
    text-align: start;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 60px;
}
.flex-item2 p{
    text-align: center;
    text-decoration: underline;
    font-family: 'roboto',sans-serif;
}.flex-item2 a{
    text-align: right;
    color: white;
    transform: scale(2);
}
.flex-item2 a:hover{
    color: lightblue;
    font-weight: bold;
}
.flex-item3{
    display: flex;
    flex-flow: column;
    text-align: right;
    padding-left: 5px;
    padding-right: 5px;
    height: 100%;
}
.flex-item3 p{
    font-family: 'roboto',sans-serif;
    padding-bottom: 5px;
    padding-right: 5px;
}
.flex-item3 p:last-child{
    margin-top: auto;
}
.datenschutz{
    width: 70%;
    margin: 0 auto;
}
.datenschutz h1{
    margin: 60px auto 0 auto;
}