html {
    background-color: black;

    font-family: Arial, Helvetica, sans-serif;
    color: darkred;
}

.expand {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flex-h-center {
    display: flex;

    justify-content: center;
}

.flex-v-center {
    display: flex;
    flex-direction: column;

    justify-content: center;
}

.center {
    text-align: center;
}

.text-link {
    text-decoration: none;
    color: red;
}

.text-link:visited {
    color: red;
}

.text-link:hover {
    color: red;
    opacity: 0.8;
}

.text-link:active {
    color: red;
}

.logo {
    background: url(../img/web_profile.png);

    width: 400px;
    height: 400px;
    background-size: 400px;

    border-radius: 200px;
    -webkit-box-shadow: inset 0px 0px 15px 5px #000000; 
    box-shadow: inset 0px 0px 15px 5px #000000;
}

.logo.small {
    width: 100px;
    height: 100px;
    background-size: 100px;
}

.icon {
    width: 94px;
    height: 94px;
}

.icon:hover {
    opacity: 0.8;
}

.icon-twitter {
    background: url(../img/icon_twitter.png);
}

.icon-gettr {
    background: url(../img/icon_gettr.png);
}

.icon-gegenstimme {
    background: url(../img/icon_gegenstimme.png);
}


.anim-pulse {
    opacity: 0.99;
    animation: pulse 2s ease-in-out 0s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.99;
    }
}

.linklist {
  padding: 0;
}

.linklist .header {
  font-weight: bold;
  list-style-type: none;
  margin-top: 10px;
}