* {
    text-decoration: none;
}

body {
    background-color: #252525;
}

@font-face {
    font-family: 'League Spartan Semibold';
    src: url(LeagueSpartan-SemiBold.ttf);
}

@font-face {
    font-family: 'Linden Hill';
    src: url(LindenHill-webfont.ttf);
}

.title:hover {
    color: grey;
}

a:visited {
  color: blue;
}

@keyframes rotieren {
    from {
        transform: rotate(0deg);
    }  

    to {
        transform: rotate(360deg);
    }
}

#bild:hover {
    animation: rotieren;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@media print {
    * {
        color:white;
    }
}

.title {
    font-family: 'League Spartan Semibold';
    font-size: 7.0em;
    text-align: center;
    color: white;
    letter-spacing: 0.2em;
    overflow: visible;
}

.heading {
    font-family: 'League Spartan Semibold';
    font-size: 4.0em;
    text-align: justify;
    color: white;
}

.paragraph {
    font-family: 'Linden Hill';
    font-size: 2.0em;
    color: white;
    text-align: justify;
}

.centered {
    text-align: center;
}

div.main {
    background-color: #404040;
    width: 80%;
    max-width: 900px;
    min-width: 100px;
    margin: 0 auto 0 auto;
    padding: 2.0em;
}
